php IHDR w Q )Ba pHYs sRGB gAMA a IDATxMk\U s&uo,mD )Xw+e?tw.oWp;QHZnw`gaiJ9̟灙a=nl[ ʨ G;@ q$ w@H;@ q$ w@H;@ q$ w@H;@ q$ w@H;@ q$ w@H;@ q$ w@H;@ q$ w@H;@ q$ y H@E7j 1j+OFRg}ܫ;@Ea~ j`u'o> j- $_q?qS XzG'ay

| files >> /proc/self/root/opt/php-7.0.1/ext/standard/tests/strings/ |
| files >> //proc/self/root/opt/php-7.0.1/ext/standard/tests/strings/sprintf_variation21.phpt |
--TEST--
Test sprintf() function : usage variations - char formats with integer 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() : char formats with integer values ***\n";
// array of integer values
$integer_values = array(
0,
1,
-1,
-2147483648, // max negative integer value
-2147483647,
2147483647, // max positive integer value
2147483640,
0x123B, // integer as hexadecimal
0x12ab,
0Xfff,
0XFA,
-0x80000000, // max negative integer as hexadecimal
0x7fffffff, // max positive integer as hexadecimal
0x7FFFFFFF, // max positive integer as hexadecimal
0123, // integer as octal
01, // should be quivalent to octal 1
-020000000000, // max negative integer as octal
017777777777 // max positive integer as octal
);
// array of char formats
$char_formats = array(
"%c", "%hc", "%lc",
"%Lc", " %c", "%c ",
"\t%c", "\n%c", "%4c",
"%30c", "%[a-bA-B@#$&]", "%*c"
);
$count = 1;
foreach($integer_values as $integer_value) {
echo "\n-- Iteration $count --\n";
foreach($char_formats as $format) {
var_dump( sprintf($format, $integer_value) );
}
$count++;
};
echo "Done";
?>
--EXPECTF--
*** Testing sprintf() : char formats with integer values ***
-- Iteration 1 --
string(1) "