Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /usr/local/src/php7/php-7.0.5/ext/standard/tests/strings/ |
Current File : //usr/local/src/php7/php-7.0.5/ext/standard/tests/strings/sprintf_variation5.phpt |
--TEST-- Test sprintf() function : usage variations - int formats with resource values --FILE-- <?php /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]]) * Description: Return a formatted string * Source code: ext/standard/formatted_print.c */ echo "*** Testing sprintf() : integer formats with resource values ***\n"; // resource type variable $fp = fopen (__FILE__, "r"); $dfp = opendir ( dirname(__FILE__) ); $fp_copy = $fp; $dfp_copy = $dfp; // array of resource types $resource_types = array ( $fp_copy, $dfp_copy ); // various integer formats $int_formats = array( "%d", "%Ld", " %d", "\t%d", "\n%d", "%4d", "%[0-9]", "%*d" ); $count = 1; foreach($resource_types as $res) { echo "\n-- Iteration $count --\n"; foreach($int_formats as $format) { var_dump( sprintf($format, $res) ); } $count++; }; // closing the resources fclose($fp); closedir($dfp); echo "Done"; ?> --EXPECTF-- *** Testing sprintf() : integer formats with resource values *** -- Iteration 1 -- string(%d) "%d" string(1) "d" string(%d) " %d" string(%d) " %d" string(%d) " %d" string(%d) "%s%d" string(%d) "0-9]" string(1) "d" -- Iteration 2 -- string(%d) "%d" string(1) "d" string(%d) " %d" string(%d) " %d" string(%d) " %d" string(%d) "%s%d" string(%d) "0-9]" string(1) "d" Done
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare