Home
last modified time | relevance | path

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

12345678910>>...33

/PHP-5.6/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 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 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 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 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 Dbug52062.phpt12 var_dump($d->format('Y-m-d H:i:s U'));
14 var_dump($d->format('U'));
17 var_dump($d->format('Y-m-d H:i:s U'));
21 var_dump($i->format('%s'));
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 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";
H A Dbug62896.phpt12 echo $date->format('Y-m-d H:i:s T').' (offset '.$date->getOffset().")\n";
15 echo $date->format('Y-m-d H:i:s T').' (offset '.$date->getOffset().")\n";
21 echo $date->format('Y-m-d H:i:s T').' (offset '.$date->getOffset().")\n";
24 echo $date->format('Y-m-d H:i:s T').' (offset '.$date->getOffset().")\n";
29 echo $date->format('Y-m-d H:i:s T').' (offset '.$date->getOffset().")\n";
32 echo $date->format('Y-m-d H:i:s T').' (offset '.$date->getOffset().")\n";
/PHP-5.6/ext/standard/tests/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-5.6/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-5.6/ext/soap/
H A Dphp_soap.h205 #define soap_error0(severity, format) \ argument
206 php_error(severity, "SOAP-ERROR: " format)
208 #define soap_error1(severity, format, param1) \ argument
209 php_error(severity, "SOAP-ERROR: " format, param1)
211 #define soap_error2(severity, format, param1, param2) \ argument
212 php_error(severity, "SOAP-ERROR: " format, param1, param2)
214 #define soap_error3(severity, format, param1, param2, param3) \ argument
215 php_error(severity, "SOAP-ERROR: " format, param1, param2, param3)
/PHP-5.6/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";
H A Ddateformat_timezone_arg_variations3.phpt17 echo $df->format($ts), "\n";
20 echo $df->format($ts), "\n";
23 echo $df->format($ts), "\n";
26 echo $df->format($ts), "\n";
30 echo $df->format($ts), "\n";
34 echo $df->format($ts), "\n";
37 echo $df->format($ts), "\n";
H A Ddateformat_create_cal_arg.phpt17 echo $df->format($ts), "\n";
21 echo $df->format($ts), "\n";
26 echo $df->format($ts), "\n";
30 echo $df->format($ts), "\n";
34 echo $df->format($ts), "\n";
38 echo $df->format($ts), "\n";
41 echo $df->format($ts), "\n";
H A Ddateformat_create_cal_arg_variant4.phpt17 echo $df->format($ts), "\n";
21 echo $df->format($ts), "\n";
26 echo $df->format($ts), "\n";
30 echo $df->format($ts), "\n";
34 echo $df->format($ts), "\n";
38 echo $df->format($ts), "\n";
41 echo $df->format($ts), "\n";
H A Ddateformat_timezone_arg_variations2.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";
/PHP-5.6/ext/exif/tests/
H A Dbug72094.phpt14 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
16 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
18 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
20 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
22 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
24 Warning: exif_read_data(bug72094_1.jpg): Process tag(x8298=Copyright ): Illegal format code 0x3030…
38 Warning: exif_read_data(bug72094_3.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
40 Warning: exif_read_data(bug72094_3.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
42 Warning: exif_read_data(bug72094_3.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
44 Warning: exif_read_data(bug72094_3.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
[all …]

Completed in 60 milliseconds

12345678910>>...33