Home
last modified time | relevance | path

Searched refs:format (Results 126 – 150 of 858) sorted by relevance

12345678910>>...35

/PHP-7.2/ext/standard/tests/strings/
H A Dvsprintf_variation11.phpt9 /* Prototype : string vsprintf(string format, array args)
16 * the '$format' and '$args' arguments of the function
33 // Arrays of octal values for the format defined in $format.
34 // Each sub array contains octal values which correspond to each format string in $format
50 foreach($formats as $format) {
52 var_dump( vsprintf($format, $args_array[$counter-1]) );
H A Dvsprintf_variation11_64bit.phpt9 /* Prototype : string vsprintf(string format, array args)
16 * the '$format' and '$args' arguments of the function
33 // Arrays of octal values for the format defined in $format.
34 // Each sub array contains octal values which correspond to each format string in $format
50 foreach($formats as $format) {
52 var_dump( vsprintf($format, $args_array[$counter-1]) );
H A Dvsprintf_variation9.phpt5 /* Prototype : string vsprintf(string format, array args)
29 // Arrays of char values for the format defined in $format.
30 // Each sub array contains char values which correspond to each format string in $format
43 // looping to test vsprintf() with different char formats from the above $format array
46 foreach($formats as $format) {
48 var_dump( vsprintf($format, $args_array[$counter-1]) );
H A Dpack64_32.phpt22 Warning: pack(): 64-bit format codes are not available for 32-bit versions of PHP in %s on line %d
25 Warning: pack(): 64-bit format codes are not available for 32-bit versions of PHP in %s on line %d
28 Warning: pack(): 64-bit format codes are not available for 32-bit versions of PHP in %s on line %d
31 Warning: pack(): 64-bit format codes are not available for 32-bit versions of PHP in %s on line %d
34 Warning: unpack(): 64-bit format codes are not available for 32-bit versions of PHP in %s on line %d
37 Warning: unpack(): 64-bit format codes are not available for 32-bit versions of PHP in %s on line %d
40 Warning: unpack(): 64-bit format codes are not available for 32-bit versions of PHP in %s on line %d
43 Warning: unpack(): 64-bit format codes are not available for 32-bit versions of PHP in %s on line %d
H A Dvfprintf_basic1.phpt2 Test vfprintf() function : basic functionality - string format
5 /* Prototype : int vfprintf ( resource $handle , string $format , array $args )
10 echo "*** Testing vfprintf() : basic functionality - using string format ***\n";
13 $format = "format";
42 *** Testing vfprintf() : basic functionality - using string format ***
H A Dvfprintf_basic7.phpt2 Test vfprintf() function : basic functionality - unsigned format
9 /* Prototype : int vfprintf ( resource $handle , string $format , array $args )
14 echo "*** Testing vfprintf() : basic functionality - using unsigned format ***\n";
17 $format = "format";
47 *** Testing vfprintf() : basic functionality - using unsigned format ***
H A Dvfprintf_basic7_64bit.phpt2 Test vfprintf() function : basic functionality - unsigned format
9 /* Prototype : int vfprintf ( resource $handle , string $format , array $args )
14 echo "*** Testing vfprintf() : basic functionality - using unsigned format ***\n";
17 $format = "format";
47 *** Testing vfprintf() : basic functionality - using unsigned 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";
14 $format = "format";
53 *** Testing vprintf() : basic functionality - using float format ***
H A Dvsprintf_variation19.phpt2 Test vsprintf() function : usage variations - with whitespaces in format strings
9 /* Prototype : string vsprintf(string $format , array $args)
14 echo "*** Testing vsprintf() : with white spaces in format strings ***\n";
16 // initializing the format array
48 foreach($formats as $format) {
50 var_dump( vsprintf($format, $args_array[$counter-1]) );
57 *** Testing vsprintf() : with white spaces in format strings ***
H A Dvsprintf_variation19_64bit.phpt2 Test vsprintf() function : usage variations - with whitespaces in format strings
9 /* Prototype : string vsprintf(string $format , array $args)
14 echo "*** Testing vsprintf() : with white spaces in format strings ***\n";
16 // initializing the format array
48 foreach($formats as $format) {
50 var_dump( vsprintf($format, $args_array[$counter-1]) );
57 *** Testing vsprintf() : with white spaces in format strings ***
H A Dsscanf_basic5.phpt2 Test sscanf() function : basic functionality - exponential format
6 /* Prototype : mixed sscanf ( string $str , string $format [, mixed &$... ] )
7 * Description: Parses input from a string according to a format
11 echo "*** Testing sscanf() : basic functionality -using exponential format ***\n";
18 // extract details using short format
25 // extract details using long format
35 *** Testing sscanf() : basic functionality -using exponential format ***
H A Dvfprintf_variation13.phpt9 /* Prototype : int vfprintf ( resource $handle , string $format , array $args )
16 * the '$format' and '$args' arguments of the function
33 // Arrays of hexa values for the format defined in $format.
34 // Each sub array contains hexa values which correspond to each format string in $format
52 // looping to test vfprintf() with different char octal from the above $format array
55 foreach($formats as $format) {
57 vfprintf($fp, $format, $args_array[$counter-1]);
H A Dvfprintf_variation13_64bit.phpt9 /* Prototype : int vfprintf ( resource $handle , string $format , array $args )
16 * the '$format' and '$args' arguments of the function
33 // Arrays of hexa values for the format defined in $format.
34 // Each sub array contains hexa values which correspond to each format string in $format
52 // looping to test vfprintf() with different char octal from the above $format array
55 foreach($formats as $format) {
57 vfprintf($fp, $format, $args_array[$counter-1]);
H A Dvprintf_variation7.phpt5 /* Prototype : string vprintf(string format, array args)
12 * the '$format' and '$args' arguments of the function
45 // Arrays of string values for the format defined in $format.
46 // Each sub array contains string values which correspond to each format string in $format
58 // looping to test vprintf() with different string formats from the above $format array
61 foreach($formats as $format) {
63 $result = vprintf($format, $args_array[$counter-1]);
H A Dvsprintf_variation7.phpt5 /* Prototype : string vsprintf(string format, array args)
12 * the '$format' and '$args' arguments of the function
45 // Arrays of string values for the format defined in $format.
46 // Each sub array contains string values which correspond to each format string in $format
58 // looping to test vsprintf() with different string formats from the above $format array
61 foreach($formats as $format) {
63 var_dump( vsprintf($format, $args_array[$counter-1]) );
H A Dvfprintf_variation11.phpt9 /* Prototype : int vfprintf ( resource $handle , string $format , array $args )
16 * the '$format' and '$args' arguments of the function
33 // Arrays of octal values for the format defined in $format.
34 // Each sub array contains octal values which correspond to each format string in $format
55 foreach($formats as $format) {
57 vfprintf($fp, $format, $args_array[$counter-1]);
H A Dvfprintf_variation11_64bit.phpt9 /* Prototype : int vfprintf ( resource $handle , string $format , array $args )
16 * the '$format' and '$args' arguments of the function
33 // Arrays of octal values for the format defined in $format.
34 // Each sub array contains octal values which correspond to each format string in $format
55 foreach($formats as $format) {
57 vfprintf($fp, $format, $args_array[$counter-1]);
H A Dvfprintf_variation19.phpt2 Test vfprintf() function : usage variations - with whitespaces in format strings
9 /* Prototype : int vfprintf ( resource $handle , string $format , array $args )
14 echo "*** Testing vfprintf() : with white spaces in format strings ***\n";
16 // initializing the format array
53 // looping to test vfprintf() with different scientific formats from the above $format array
56 foreach($formats as $format) {
58 vfprintf($fp,$format, $args_array[$counter-1]);
70 *** Testing vfprintf() : with white spaces in format strings ***
H A Dvfprintf_variation19_64bit.phpt2 Test vfprintf() function : usage variations - with whitespaces in format strings
9 /* Prototype : int vfprintf ( resource $handle , string $format , array $args )
14 echo "*** Testing vfprintf() : with white spaces in format strings ***\n";
16 // initializing the format array
53 // looping to test vfprintf() with different scientific formats from the above $format array
56 foreach($formats as $format) {
58 vfprintf($fp,$format, $args_array[$counter-1]);
70 *** Testing vfprintf() : with white spaces in format strings ***
/PHP-7.2/ext/standard/tests/url/
H A Dget_headers_error_002.phpt2 Test get_headers() function: wrong type for argument format
8 /* Prototype : proto array get_headers(string url[, int format])
18 echo "\n-- Testing get_headers() function with format argument as type string --\n";
22 echo "\n-- Testing get_headers() function with format argument as type array --\n";
31 echo "\n-- Testing get_headers() function with format argument as type object --\n";
40 -- Testing get_headers() function with format argument as type string --
45 -- Testing get_headers() function with format argument as type array --
50 -- Testing get_headers() function with format argument as type object --
/PHP-7.2/ext/intl/tests/
H A Dmsgfmt_format_error4.phpt2 MessageFormatter::format() invalid UTF-8 for arg key or value
18 var_dump($mf->format(array("foo" => 7, "\x80" => "bar")));
20 var_dump($mf->format(array("foo" => "\x80")));
22 Warning: MessageFormatter::format(): Invalid UTF-8 data in argument key: '�' in %s on line %d
25 Warning: MessageFormatter::format(): Invalid UTF-8 data in string argument: '�' in %s on line %d
/PHP-7.2/ext/date/tests/
H A Dgmstrftime_variation17.phpt11 /* Prototype : string gmstrftime(string format [, int timestamp])
24 echo "\n-- Testing gmstrftime() function with Day of the month as decimal single digit format --\n";
25 $format = "%e";
26 var_dump( gmstrftime($format) );
27 var_dump( gmstrftime($format, $timestamp) );
34 -- Testing gmstrftime() function with Day of the month as decimal single digit format --
H A Dgmstrftime_variation18.phpt11 /* Prototype : string gmstrftime(string format [, int timestamp])
24 echo "\n-- Testing gmstrftime() function with Day of the month as decimal single digit format --\n";
25 $format = "%e";
26 var_dump( gmstrftime($format) );
27 var_dump( gmstrftime($format, $timestamp) );
34 -- Testing gmstrftime() function with Day of the month as decimal single digit format --
H A Dstrftime_variation17.phpt11 /* Prototype : string strftime(string format [, int timestamp])
24 echo "\n-- Testing strftime() function with Day of the month as decimal single digit format --\n";
25 $format = "%e";
26 var_dump( strftime($format) );
27 var_dump( strftime($format, $timestamp) );
33 -- Testing strftime() function with Day of the month as decimal single digit format --
H A Dstrftime_variation18.phpt11 /* Prototype : string strftime(string format [, int timestamp])
24 echo "\n-- Testing strftime() function with Day of the month as decimal single digit format --\n";
25 $format = "%e";
26 var_dump( strftime($format) );
27 var_dump( strftime($format, $timestamp) );
33 -- Testing strftime() function with Day of the month as decimal single digit format --

Completed in 37 milliseconds

12345678910>>...35