Home
last modified time | relevance | path

Searched refs:format (Results 151 – 175 of 858) sorted by relevance

12345678910>>...35

/PHP-7.2/ext/standard/tests/strings/
H A Dvfprintf_variation9.phpt5 /* Prototype : int vfprintf ( resource $handle , 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
48 // looping to test vfprintf() with different char formats from the above $format array
51 foreach($formats as $format) {
53 vfprintf($fp, $format, $args_array[$counter-1]);
H A Dvfprintf_variation7.phpt5 /* Prototype : int vfprintf ( resource $handle , 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
63 // looping to test vfprintf() with different string formats from the above $format array
66 foreach($formats as $format) {
68 vfprintf($fp, $format, $args_array[$counter-1]);
H A Dvprintf_variation19.phpt2 Test vprintf() function : usage variations - with whitespaces in format strings
9 /* Prototype : string vprintf(string $format , array $args)
14 echo "*** Testing vprintf() : with white spaces in format strings ***\n";
16 // initializing the format array
48 foreach($formats as $format) {
50 $result = vprintf($format, $args_array[$counter-1]);
59 *** Testing vprintf() : with white spaces in format strings ***
H A Dvprintf_variation19_64bit.phpt2 Test vprintf() function : usage variations - with whitespaces in format strings
9 /* Prototype : string vprintf(string $format , array $args)
14 echo "*** Testing vprintf() : with white spaces in format strings ***\n";
16 // initializing the format array
48 foreach($formats as $format) {
50 $result = vprintf($format, $args_array[$counter-1]);
59 *** Testing vprintf() : with white spaces in format strings ***
H A Dvfprintf_basic3.phpt2 Test vfprintf() function : basic functionality - float format
5 /* Prototype : int vfprintf ( resource $handle , string $format , array $args )
10 echo "*** Testing vfprintf() : basic functionality - using float format ***\n";
14 $format = "format";
56 *** Testing vfprintf() : basic functionality - using float format ***
H A Dsscanf_basic8.phpt2 Test sscanf() function : basic functionality - hexadecimal 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 hexadecimal format ***\n";
18 // extract details using short format
25 // extract details using long format
34 *** Testing sscanf() : basic functionality - - using hexadecimal format ***
/PHP-7.2/Zend/
H A Dzend_sprintf.c31 int zend_sprintf(char *buffer, const char *format, ...) in zend_sprintf() argument
36 va_start(args, format); in zend_sprintf()
37 len = vsprintf(buffer, format, args); in zend_sprintf()
/PHP-7.2/ext/standard/
H A Dformatted_print.c393 char *format, padding; in php_formatted_print() local
444 if (format[inpos] != '%') { in php_formatted_print()
458 format[inpos], inpos)); in php_formatted_print()
459 if (isascii((int)format[inpos]) && !isalpha((int)format[inpos])) { in php_formatted_print()
485 format[inpos], inpos)); in php_formatted_print()
487 if (format[inpos] == ' ' || format[inpos] == '0') { in php_formatted_print()
488 padding = format[inpos]; in php_formatted_print()
495 padding = format[++inpos]; in php_formatted_print()
524 if (format[inpos] == '.') { in php_formatted_print()
559 if (format[inpos] == 'l') { in php_formatted_print()
[all …]
/PHP-7.2/main/
H A Dphp_sprintf.c31 php_sprintf (char*s, const char* format, ...) in php_sprintf() argument
36 va_start (args, format); in php_sprintf()
38 ret = vsprintf (s, format, args); in php_sprintf()
/PHP-7.2/ext/date/tests/
H A DDateTime_setTime_basic1.phpt19 echo "Initial date: " . $datetime ->format(DATE_RFC2822) . "\n";
22 echo "After modification1 " . $datetime ->format(DATE_RFC2822) . "\n";
25 echo "After modification2 " . $datetime ->format(DATE_RFC2822) . "\n";
28 echo "After modification3 " . $datetime ->format(DATE_RFC2822) . "\n";
31 echo "After modification4 " . $datetime ->format(DATE_RFC2822) . "\n";
34 echo "After modification5 " . $datetime ->format(DATE_RFC2822) . "\n";
H A Dbug45543.phpt16 echo $d1->format(DATE_ISO8601), PHP_EOL;
17 echo $d2->format(DATE_ISO8601), PHP_EOL;
20 echo $d1->format(DATE_ISO8601), PHP_EOL;
21 echo $d2->format(DATE_ISO8601), PHP_EOL;
H A Dbug43003.phpt8 echo $oDateTest->getTimezone()->getName().": " . $oDateTest->format("Y-m-d H:i:s")."\n";
11 echo $oDateTest->getTimezone()->getName().": " . $oDateTest->format("Y-m-d H:i:s")."\n";
14 echo $oDateTest->getTimezone()->getName().": " . $oDateTest->format("Y-m-d H:i:s")."\n";
17 echo $oDateTest->getTimezone()->getName().": " . $oDateTest->format("Y-m-d H:i:s")."\n";
20 echo $oDateTest->getTimezone()->getName().": " . $oDateTest->format("Y-m-d H:i:s")."\n";
H A Ddate_add_basic.phpt20 $format = 'Y-m-d H:i:s';
29 var_dump( $d->format($format) );
33 var_dump( $d->format($format) );
H A Dforward-transition-construction.phpt8 echo $date->format('Y-m-d H:i:s T/e - U') . "\n";
11 echo $date->format('Y-m-d H:i:s T/e - U') . "\n";
14 echo $date->format('Y-m-d H:i:s T/e - U') . "\n";
17 echo $date->format('Y-m-d H:i:s T/e - U') . "\n";
20 echo $date->format('Y-m-d H:i:s T/e - U') . "\n";
H A Ddate_sub_basic.phpt20 $format = 'Y-m-d H:i:s';
29 var_dump( $d->format($format) );
33 var_dump( $d->format($format) );
H A Dbug46268.phpt8 echo $now->format("Y-m-d H:i:s") . PHP_EOL;
11 echo $now->format("Y-m-d H:i:s") . PHP_EOL;
14 echo $now->format("Y-m-d H:i:s") . PHP_EOL;
18 echo $now->format("Y-m-d H:i:s") . PHP_EOL;
H A Dbug48097.phpt9 echo $d->format( DATE_ISO8601 ), "\n";
10 echo $d->format( 'U' ), "\n\n";
14 echo $d->format( DATE_ISO8601 ), "\n\n";
15 echo $d->format( 'U' ), "\n\n";
H A Dbug52668.phpt11 echo $dt->format('r') . "\n"; // Sun, 12 Dec 2010 00:00:00 +0100
13 echo $start->format('r'), "\n";
15 echo $dt->format('r') . "\n"; // Sun, 12 Dec 2010 00:00:00 +0100
17 echo $start->format('r'), "\n\n";
H A Dgmdate_basic.phpt5 /* Prototype : string gmdate(string format [, long timestamp])
15 $format = DATE_ISO8601;
19 var_dump( gmdate($format, $timestamp) );
22 var_dump( gmdate($format) );
H A Dbug41599.phpt8 echo $start->format('Y-m-d H:i:s'),PHP_EOL;
12 echo $start->format('Y-m-d H:i:s'),PHP_EOL;
16 echo $start->format('Y-m-d H:i:s'),PHP_EOL;
20 echo $start->format('Y-m-d H:i:s'),PHP_EOL;
H A Dbug74652.phpt17 foreach ( $formats as $format )
19 $dt = new DateTimeImmutable( $format );
20 echo $dt->format( 'Y-m-d H:i:s' ), "\n";
H A Dbug49059.phpt9 print "\$date1 at init: " . $date1->format("Y-m-d") . "\n";
10 print "\$date2 at init: " . $date2->format("Y-m-d") . "\n";
12 print "\$date1 after first diff: " . $date1->format("Y-m-d") . "\n";
15 print "\$date1 after sub: " . $date1->format("Y-m-d") . "\n";
18 $date1->format("Y-m-d") . "\n";
22 $date1->format("Y-m-d") . "\n";
/PHP-7.2/ext/soap/
H A Dphp_soap.h202 #define soap_error0(severity, format) \ argument
203 php_error(severity, "SOAP-ERROR: " format)
205 #define soap_error1(severity, format, param1) \ argument
206 php_error(severity, "SOAP-ERROR: " format, param1)
208 #define soap_error2(severity, format, param1, param2) \ argument
209 php_error(severity, "SOAP-ERROR: " format, param1, param2)
211 #define soap_error3(severity, format, param1, param2, param3) \ argument
212 php_error(severity, "SOAP-ERROR: " format, param1, param2, param3)
/PHP-7.2/ext/intl/tests/
H A Ddateformat_timezone_arg_variations.phpt16 echo $df->format($ts), "\n";
19 echo $df->format($ts), "\n";
22 echo $df->format($ts), "\n";
25 echo $df->format($ts), "\n";
29 echo $df->format($ts), "\n";
33 echo $df->format($ts), "\n";
36 echo $df->format($ts), "\n";
H A Ddateformat_timezone_arg_variations4.phpt16 echo $df->format($ts), "\n";
19 echo $df->format($ts), "\n";
22 echo $df->format($ts), "\n";
25 echo $df->format($ts), "\n";
29 echo $df->format($ts), "\n";
33 echo $df->format($ts), "\n";
36 echo $df->format($ts), "\n";

Completed in 43 milliseconds

12345678910>>...35