PHP uses GETDATE to obtain the current date and time as a method for associating arrays. the getdate array is used. PHP uses GETDATE to obtain the current date and time as a method for associating arrays, getdate array This article describes how PHP uses GETDATE to obtain the current date and time as an associated array. PHP uses GETDATE to obtain the current date and time as a method for associating arrays. getdate array
This example describes how PHP uses GETDATE to obtain the current date and time as an associated array. Share it with you for your reference. The specific analysis is as follows:
The php getdate function is used to obtain the current date and time, and convert from the operating system or an associated array to a UNIX-style date integer.
Syntax format:
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 time from the operating system .)
The return value is an associative array containing:
Mon The month of the year as a number (1 .. 12)
Mday The day of the month (1 .. 31)
Year 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 day of 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 jaruary 1, 1970
The following is an example:
<?php$Now = getdate();foreach ($Now as $Key => $Value) { echo "$Key => $Value\n";}?>
The output result is as follows:
seconds => 59minutes => 14hours => 7mday => 26wday => 6mon => 12year => 2009yday => 359weekday => Saturdaymonth => December0 => 1261811699
I hope this article will help you with php programming.
Examples in this article describes how PHP uses GETDATE to obtain the current date and time as an associated array...