php-src/ext/standard/tests/strings/sprintf_variation5.phpt
2007-09-29 16:54:57 +00:00

71 lines
1.2 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__) );
// array of resource types
$resource_types = array (
$fp,
$dfp
);
// 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);
fclose($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) " %d"
string(4) "0-9]"
string(1) "d"
-- Iteration 2 --
string(%d) "%d"
string(1) "d"
string(%d) " %d"
string(%d) " %d"
string(%d) "
%d"
string(%d) " %d"
string(4) "0-9]"
string(1) "d"
Done