mirror of
https://github.com/php/php-src.git
synced 2026-04-21 23:18:13 +02:00
ea256a218b
This format matches against null bytes, and prevents the test expectation from being interpreted as binary data. bless_tests.php will automatically replace \0 with %0 as well.
98 lines
2.0 KiB
PHP
98 lines
2.0 KiB
PHP
--TEST--
|
|
Test vprintf() function : usage variations - string formats with strings
|
|
--FILE--
|
|
<?php
|
|
|
|
/*
|
|
* Test vprintf() when different string formats and string values are passed to
|
|
* the '$format' and '$args' arguments of the function
|
|
*/
|
|
|
|
echo "*** Testing vprintf() : string formats with strings ***\n";
|
|
|
|
|
|
// defining different heredoc strings
|
|
$heredoc_string = <<<EOT
|
|
This is string defined
|
|
using heredoc.
|
|
EOT;
|
|
|
|
/* heredoc string with only numerics */
|
|
$heredoc_numeric_string = <<<EOT
|
|
123456 3993
|
|
4849 string
|
|
EOT;
|
|
|
|
/* empty heardoc string */
|
|
$heredoc_empty_string = <<<EOT
|
|
EOT;
|
|
|
|
// defining array of string formats
|
|
$formats = array(
|
|
"%s",
|
|
"%+s %-s",
|
|
"%ls %4s %-4s",
|
|
"%10.4s %-10.4s %04s %04.4s",
|
|
"%'#2s %'2s %'$2s %'_2s",
|
|
"%% %%s",
|
|
'%3$s %4$s %1$s %2$s'
|
|
);
|
|
|
|
// Arrays of string values for the format defined in $format.
|
|
// Each sub array contains string values which correspond to each format string in $format
|
|
$args_array = array(
|
|
array(" "),
|
|
array("hello\0world", "hello\0"),
|
|
array("@#$%&*", "\x55F", "\001"),
|
|
array("sunday", 'monday', "tuesday", 'wednesday'),
|
|
array($heredoc_string, "abcdef", $heredoc_numeric_string, $heredoc_empty_string),
|
|
array("one", "two", 'three'),
|
|
array("three", 'four', 'one', "two")
|
|
|
|
);
|
|
|
|
// looping to test vprintf() with different string formats from the above $format array
|
|
// and with string from the above $args_array array
|
|
$counter = 1;
|
|
foreach($formats as $format) {
|
|
echo "\n-- Iteration $counter --\n";
|
|
$result = vprintf($format, $args_array[$counter-1]);
|
|
echo "\n";
|
|
var_dump($result);
|
|
$counter++;
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
*** Testing vprintf() : string formats with strings ***
|
|
|
|
-- Iteration 1 --
|
|
|
|
int(1)
|
|
|
|
-- Iteration 2 --
|
|
hello%0world hello%0
|
|
int(18)
|
|
|
|
-- Iteration 3 --
|
|
@#$%&* UF
|
|
int(16)
|
|
|
|
-- Iteration 4 --
|
|
sund mond tuesday wedn
|
|
int(34)
|
|
|
|
-- Iteration 5 --
|
|
This is string defined
|
|
using heredoc. abcdef 123456 3993
|
|
4849 string __
|
|
int(71)
|
|
|
|
-- Iteration 6 --
|
|
% %s
|
|
int(4)
|
|
|
|
-- Iteration 7 --
|
|
one two three four
|
|
int(18)
|