Home
last modified time | relevance | path

Searched refs:vprintf (Results 1 – 25 of 46) sorted by path

12

/PHP-5.5/ext/standard/
H A Dbasic_functions.c2822 PHP_FE(vprintf, arginfo_vprintf)
H A Dformatted_print.c729 PHP_FUNCTION(vprintf) in PHP_FUNCTION() argument
H A Dphp_string.h64 PHP_FUNCTION(vprintf);
/PHP-5.5/ext/standard/tests/strings/
H A Dvfprintf_variation20.phpt91 fprintf($fp, "\n*** Testing vprintf() with with unexpected values for format argument ***\n");
121 *** Testing vprintf() with with unexpected values for format argument ***
H A Dvfprintf_variation21.phpt88 fprintf($fp, "\n*** Testing vprintf() with unexpected values for args argument ***\n");
119 *** Testing vprintf() with unexpected values for args argument ***
H A Dvfprintf_variation5.phpt49 // looping to test vprintf() with different float formats from the above $format array
H A Dvfprintf_variation7.phpt2 Test vprintf() function : usage variations - string formats with strings
H A Dvprintf_basic1.phpt2 Test vprintf() function : basic functionality - string format
5 /* Prototype : int vprintf(string $format , array $args)
10 echo "*** Testing vprintf() : basic functionality - using string format ***\n";
22 $result = vprintf($format1,$arg1);
25 $result = vprintf($format2,$arg2);
28 $result = vprintf($format3,$arg3);
35 *** Testing vprintf() : basic functionality - using string format ***
H A Dvprintf_basic2.phpt2 Test vprintf() function : basic functionality - integer format
5 /* Prototype : string vprintf(string $format , array $args)
11 * Testing vprintf() : basic functionality - using integer format
14 echo "*** Testing vprintf() : basic functionality - using integer format ***\n";
25 $result = vprintf($format1,$arg1);
29 $result = vprintf($format2,$arg2);
33 $result = vprintf($format3,$arg3);
40 *** Testing vprintf() : basic functionality - using integer format ***
H A Dvprintf_basic3.phpt2 Test vprintf() function : basic functionality - float format
5 /* Prototype : string vprintf(string $format , array $args)
10 echo "*** Testing vprintf() : basic functionality - using float format ***\n";
26 $result = vprintf($format1,$arg1);
30 $result = vprintf($format11,$arg1);
34 $result = vprintf($format2,$arg2);
38 $result = vprintf($format22,$arg2);
42 $result = vprintf($format3,$arg3);
46 $result = vprintf($format33,$arg3);
53 *** Testing vprintf() : basic functionality - using float format ***
H A Dvprintf_basic4.phpt2 Test vprintf() function : basic functionality - bool format
5 /* Prototype : string vprintf(string $format , array $args)
10 echo "*** Testing vprintf() : basic functionality - using bool format ***\n";
21 $result = vprintf($format1,$arg1);
25 $result = vprintf($format2,$arg2);
29 $result = vprintf($format3,$arg3);
36 *** Testing vprintf() : basic functionality - using bool format ***
H A Dvprintf_basic5.phpt2 Test vprintf() function : basic functionality - char format
5 /* Prototype : string vprintf(string $format , array $args)
10 echo "*** Testing vprintf() : basic functionality - using char format ***\n";
21 $result = vprintf($format1,$arg1);
25 $result = vprintf($format2,$arg2);
29 $result = vprintf($format3,$arg3);
36 *** Testing vprintf() : basic functionality - using char format ***
H A Dvprintf_basic6.phpt2 Test vprintf() function : basic functionality - exponential format
5 /* Prototype : string vprintf(string $format , array $args)
10 echo "*** Testing vprintf() : basic functionality - using exponential format ***\n";
21 $result = vprintf($format1,$arg1);
25 $result = vprintf($format2,$arg2);
29 $result = vprintf($format3,$arg3);
36 *** Testing vprintf() : basic functionality - using exponential format ***
H A Dvprintf_basic7.phpt2 Test vprintf() function : basic functionality - unsigned format
9 /* Prototype : string vprintf(string $format , aaray $args)
14 echo "*** Testing vprintf() : basic functionality - using unsigned format ***\n";
25 $result = vprintf($format1,$arg1);
29 $result = vprintf($format2,$arg2);
33 $result = vprintf($format3,$arg3);
40 *** Testing vprintf() : basic functionality - using unsigned format ***
H A Dvprintf_basic7_64bit.phpt2 Test vprintf() function : basic functionality - unsigned format
9 /* Prototype : string vprintf(string $format , aaray $args)
14 echo "*** Testing vprintf() : basic functionality - using unsigned format ***\n";
25 $result = vprintf($format1,$arg1);
29 $result = vprintf($format2,$arg2);
33 $result = vprintf($format3,$arg3);
39 *** Testing vprintf() : basic functionality - using unsigned format ***
H A Dvprintf_basic8.phpt2 Test vprintf() function : basic functionality - octal format
5 /* Prototype : string vprintf(string $format , array $args)
10 echo "*** Testing vprintf() : basic functionality - using octal format ***\n";
21 $result = vprintf($format1,$arg1);
25 $result = vprintf($format2,$arg2);
29 $result = vprintf($format3,$arg3);
36 *** Testing vprintf() : basic functionality - using octal format ***
H A Dvprintf_basic9.phpt2 Test vprintf() function : basic functionality - hexadecimal format
5 /* Prototype : string vprintf(string $format , array $args)
10 echo "*** Testing vprintf() : basic functionality - using hexadecimal format ***\n";
26 $result = vprintf($format1,$arg1);
29 $result = vprintf($format11,$arg1);
33 $result = vprintf($format2,$arg2);
36 $result = vprintf($format22,$arg2);
40 $result = vprintf($format3,$arg3);echo "\n";
42 $result = vprintf($format33,$arg3);
49 *** Testing vprintf() : basic functionality - using hexadecimal format ***
H A Dvprintf_error.phpt2 Test vprintf() function : error conditions
5 /* Prototype : int vprintf(string $format , array $args)
10 echo "*** Testing vprintf() : error conditions ***\n";
18 echo "\n-- Testing vprintf() function with Zero arguments --\n";
19 var_dump( vprintf() );
22 var_dump( vprintf($format) );
25 var_dump( vprintf($format, $args, $extra_arg) );
30 *** Testing vprintf() : error conditions ***
32 -- Testing vprintf() function with Zero arguments --
39 Warning: Wrong parameter count for vprintf() in %s on line %d
[all …]
H A Dvprintf_variation1.phpt2 Test vprintf() function : usage variations - unexpected values for the format argument
5 /* Prototype : string vprintf(string $format, array $args)
11 * Test vprintf() when different unexpected format strings are passed to
15 echo "*** Testing vprintf() : with unexpected values for format argument ***\n";
91 $result = vprintf($value,$args);
104 *** Testing vprintf() : with unexpected values for format argument ***
H A Dvprintf_variation10.phpt2 Test vprintf() function : usage variations - char formats with non-char values
5 /* Prototype : string vprintf(string format, array args)
11 * Test vprintf() when different char formats and non-char values are passed to
15 echo "*** Testing vprintf() : char formats and non-char values ***\n";
66 // looping to test vprintf() with different char formats from the above $format array
71 $result = vprintf($formats, $args);
80 *** Testing vprintf() : char formats and non-char values ***
H A Dvprintf_variation11.phpt2 Test vprintf() function : usage variations - octal formats with octal values
9 /* Prototype : string vprintf(string format, array args)
15 * Test vprintf() when different octal formats and octal values are passed to
19 echo "*** Testing vprintf() : octal formats with octal values ***\n";
47 // looping to test vprintf() with different octal formats from the above $formats array
52 $result = vprintf($format, $args_array[$counter-1]);
61 *** Testing vprintf() : octal formats with octal values ***
H A Dvprintf_variation11_64bit.phpt2 Test vprintf() function : usage variations - octal formats with octal values
9 /* Prototype : string vprintf(string format, array args)
15 * Test vprintf() when different octal formats and octal values are passed to
19 echo "*** Testing vprintf() : octal formats with octal values ***\n";
47 // looping to test vprintf() with different octal formats from the above $formats array
52 $result = vprintf($format, $args_array[$counter-1]);
61 *** Testing vprintf() : octal formats with octal values ***
H A Dvprintf_variation12.phpt2 Test vprintf() function : usage variations - octal formats with non-octal values
9 /* Prototype : string vprintf(string format, array args)
15 * Test vprintf() when different octal formats and non-octal values are passed to
19 echo "*** Testing vprintf() : octal formats and non-octal values ***\n";
70 // looping to test vprintf() with different octal formats from the above $format array
75 $result = vprintf($formats, $args);
84 *** Testing vprintf() : octal formats and non-octal values ***
H A Dvprintf_variation12_64bit.phpt2 Test vprintf() function : usage variations - octal formats with non-octal values
9 /* Prototype : string vprintf(string format, array args)
15 * Test vprintf() when different octal formats and non-octal values are passed to
19 echo "*** Testing vprintf() : octal formats and non-octal values ***\n";
70 // looping to test vprintf() with different octal formats from the above $format array
75 $result = vprintf($formats, $args);
84 *** Testing vprintf() : octal formats and non-octal values ***
H A Dvprintf_variation13.phpt2 Test vprintf() function : usage variations - hexa formats with hexa values
9 /* Prototype : string vprintf(string format, array args)
15 * Test vprintf() when different hexa formats and hexa values are passed to
19 echo "*** Testing vprintf() : hexa formats with hexa values ***\n";
47 // looping to test vprintf() with different char octal from the above $format array
52 $result = vprintf($format, $args_array[$counter-1]);
61 *** Testing vprintf() : hexa formats with hexa values ***

Completed in 54 milliseconds

12