This example describes how PHP uses getdate to get the current date time as an associative array. Share to everyone for your reference. The specific analysis is as follows:
The PHP getdate function is used to get the current date and time, from the operating system or an associative array to a UNIX-style date integer.
The syntax format is as follows
Array getdate ();
Array getdate (integer $Time);
The parameters are as follows:
Arguments
$Time
The number of seconds since midnight before January 1, 1970. (UNIX style.)
Default
The default is the "Current date" and "Operating system."
The return value is a associative array containing:
Mon the month of the year as a number (1..12)
Mday the day of the month (1..31)
Year of the year (4 digits)
Hours the hour of the day (0..23)
Minutes the minutes of the hour (0..59)
Seconds the seconds of the minute (0..59)
Month the month of the year as a word (January. December)
Yday the Year (0..365)
Wday the day of the week as a number (0..6)
Weekday the day of the week as a word (Sunday. Saturday)
0 Seconds since midnight before January 1, 1970
Here is a sample usage:
<?php
$Now = getdate ();
foreach ($Now as $Key => $Value) {
echo "$Key => $Value \ n";
}
? >
The output results are as follows:
Seconds =>
minutes => hours =>
7
mday =>
wday => 6
Mon
=> year => 2009
yday => 359
weekday => Saturday month =>
December
0 => 1261811699
I hope this article will help you with your PHP program design.