Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
1
Task/System-time/PHP/system-time-1.php
Normal file
1
Task/System-time/PHP/system-time-1.php
Normal file
|
|
@ -0,0 +1 @@
|
|||
echo time(), "\n";
|
||||
1
Task/System-time/PHP/system-time-2.php
Normal file
1
Task/System-time/PHP/system-time-2.php
Normal file
|
|
@ -0,0 +1 @@
|
|||
echo microtime(), "\n";
|
||||
6
Task/System-time/PHP/system-time-3.php
Normal file
6
Task/System-time/PHP/system-time-3.php
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
echo date('D M j H:i:s Y'), "\n"; // custom format; see format characters here:
|
||||
// http://us3.php.net/manual/en/function.date.php
|
||||
echo date('c'), "\n"; // ISO 8601 format
|
||||
echo date('r'), "\n"; // RFC 2822 format
|
||||
echo date(DATE_RSS), "\n"; // can also use one of the predefined formats here:
|
||||
// http://us3.php.net/manual/en/class.datetime.php#datetime.constants.types
|
||||
Loading…
Add table
Add a link
Reference in a new issue