Home
last modified time | relevance | path

Searched refs:date (Results 126 – 150 of 544) sorted by relevance

12345678910>>...22

/PHP-8.0/ext/date/tests/
H A Dbug36599.phpt7 echo date( DATE_ATOM, strtotime( "2006-03-03 08:47:55" ) ), "\n";
8 echo date( DATE_W3C, strtotime( "2006-03-03 08:47:55" ) ), "\n";
H A DDateTime_clone_basic3.phpt33 ["date"]=>
47 ["date"]=>
61 ["date"]=>
79 ["date"]=>
97 ["date"]=>
H A Dbug41842.phpt7 $date = new DateTime('-2007-06-28 00:00:00');
8 echo $date->format(DATE_ISO8601);
H A Dbug33452.phpt6 echo date('Y-W', strtotime('2005-1-1')), "\n";
7 echo date('o-W', strtotime('2005-1-1')), "\n";
H A D013.phpt19 ["date"]=>
28 ["date"]=>
37 ["date"]=>
H A D012.phpt18 ["date"]=>
27 ["date"]=>
36 ["date"]=>
H A Dbug43808.phpt5 $date = date_create('asdfasdf');
7 if ($date instanceof DateTime) {
11 var_dump( $date );
H A Ddate_create_from_format_basic2.phpt7 date.timezone=UTC
10 var_dump(date_create_from_format('Y-m-d', '2009---01')); // invalid date
H A Dbug28024.phpt4 date.timezone=Europe/Berlin
8 echo date("Y-m-d H:i:s T", strtotime("17:00 2004-01-01"));
H A DDateTime_serialize.phpt21 ["date"]=>
28 string(125) "O:8:"DateTime":3:{s:4:"date";s:26:"2005-07-14 22:30:41.000000";s:13:"timezone_type";i:…
30 ["date"]=>
H A Ddate_diff1.phpt4 date.timezone=Europe/London
16 ["date"]=>
24 ["date"]=>
H A Dbug80047.phpt4 date.timezone=UTC
28 foreach ($dp as $date) {}
29 echo get_class($date), "\n";
H A Ddate_get_last_errors_basic.phpt7 date.timezone=UTC
10 var_dump(date_get_last_errors()); // no date was parsed, so no errors
H A Ddate_default_timezone_get-1.phpt8 date.timezone=
13 echo date('e'), "\n";
H A Dbug35218.phpt6 $date = 'Sun, 13 Nov 2005 22:56:10 -0800 (PST)';
9 var_dump(strtotime($date));
H A Ddate_period_bad_iso_format.phpt2 Test bad ISO date formats passed to DatePeriod constructor
27 DatePeriod::__construct(): ISO interval must contain a start date, "R4" given
29 DatePeriod::__construct(): ISO interval must contain an end date or a recurrence count, "2012-07-01…
H A Dbug35422.phpt7 echo date(DATE_ISO8601, strtotime("July 1, 2000 00:00:00 UTC")) . "\n";
8 echo date(DATE_ISO8601, strtotime("July 1, 2000 00:00:00 GMT")) . "\n";
H A Dbug61642.phpt4 date.timezone=UTC
15 $date = new DateTime($startdate);
17 $header[] = $date->format('Y-m-d D');
28 $date = new DateTime($startdate);
29 $date->modify("{$days} weekdays");
31 $line[] = $date->format('Y-m-d D');
H A DDateTime_clone_basic2.phpt38 ["date"]=>
50 ["date"]=>
66 ["date"]=>
82 ["date"]=>
H A Ddate_default_timezone_get-4.phpt4 date.timezone=Incorrect/Zone
10 Warning: date_default_timezone_get(): Invalid date.timezone value 'Incorrect/Zone', we selected the…
H A Dbug33536.phpt7 print date("Y-m-d", strtotime("monkey")) ."\n";
8 print date("Y-m-d", false) ."\n";
/PHP-8.0/ext/ftp/tests/
H A Dftp_mdtm_basic.phpt23 echo date("F d Y H:i:s u",$time), PHP_EOL;
26 echo date("F d Y H:i:s u",$time), PHP_EOL;
29 echo date("F d Y H:i:s u",$time), PHP_EOL;
35 echo date("F d Y H:i:s u",$time), PHP_EOL;
/PHP-8.0/ext/odbc/tests/
H A Dbug68087.phpt2 odbc_exec(): Getting accurate date data from query
27 $date = odbc_result($res, "DATE_COL");
30 if ($date != $id_1_date) {
36 if ($date != $id_2_date) {
/PHP-8.0/ext/intl/tests/
H A Dmsgfmt_format_simple_types_numeric_strings.phpt4 date.timezone=Atlantic/Azores
20 date {f,date}
49 date May %d, 2012
/PHP-8.0/ext/mysqli/tests/
H A Dmysqli_fetch_array.phpt201 $date = @date('Y-m-d');
202 func_mysqli_fetch_array($link, $engine, "DATE",$date, $date, 410);
203 func_mysqli_fetch_array($link, $engine, "DATE NOT NULL",$date, $date, 420);
206 $date = @date('Y-m-d H:i:s');
207 func_mysqli_fetch_array($link, $engine, "DATETIME", $date, $date, 440);
208 func_mysqli_fetch_array($link, $engine, "DATETIME NOT NULL", $date, $date, 450);
210 func_mysqli_fetch_array($link, $engine, "TIMESTAMP", $date, $date, 470);
212 $date = @date('H:i:s');
213 func_mysqli_fetch_array($link, $engine, "TIME", $date, $date, 480);
214 func_mysqli_fetch_array($link, $engine, "TIME NOT NULL", $date, $date, 490);
[all …]

Completed in 26 milliseconds

12345678910>>...22