mirror of
https://github.com/php/php-src.git
synced 2024-12-15 21:05:51 +08:00
74 lines
1.3 KiB
PHP
74 lines
1.3 KiB
PHP
--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
|