PHPはGETDATEを使用して、現在の日付時間を関連配列として取得する方法です。


この例は、PHPがGETDATEを使用して、現在の日付時間を関連配列として取得する方法を説明する。皆さんの参考にしてください。具体的な分析は以下の通りです。
PHP GETDATE関数は、現在の日付と時間を取得し、オペレーティングシステムまたは関連配列からUNIXスタイルに変換する日付整数です。
文法の書式は以下の通りです

array getdate ();
array getdate (integer $Time);
パラメータは以下の通りです
Agments
$Time
The number of seconds since midnight before Januar 1,1970.(UNIX style.)
Default
The default is the current date and time from the operating system.)
The return value is an assicative array containing:
けもの The moth of the year as a number(1..12)
mday The day of the mons(1.3.31)
year The year(4 digits)
ハウス The hour of the day(0..23)
minutes The minutes of the hour(0..59)
seconds. The seconds of the minute(0..59)
モンズ The moth of the year as word(Janury.December)
yday The day of the year(0.3.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 Januar 1,1970
以下は使用例です。

<?php
$Now = getdate();
foreach ($Now as $Key => $Value) {
 echo "$Key => $Value
"; } ?>
出力結果は以下の通りです。

seconds => 59
minutes => 14
hours => 7
mday => 26
wday => 6
mon => 12
year => 2009
yday => 359
weekday => Saturday
month => December
0 => 1261811699
本論文で述べたように、皆さんのphpプログラムの設計に役に立ちます。