phpはgettimeoff day関数を使って現在の時間を返して関連配列に保存します。
740 ワード
この例は、phpがgettimeoff関数を使用して現在の時間を返し、関連する配列に保存する方法を説明する。皆さんの参考にしてください。具体的な分析は以下の通りです。
英語の公式説明は以下の通りです。
キー Description
sec Seconds since midnight before Januar 1,1970
アメリカ Microsoft onds since the sec value
ミニリスト
Local time zone difference from GMT,in minutes
dsttime 1 ifdaylight savings time is in effect、
0 if not.
英語の公式説明は以下の通りです。
キー Description
sec Seconds since midnight before Januar 1,1970
アメリカ Microsoft onds since the sec value
ミニリスト
Local time zone difference from GMT,in minutes
dsttime 1 ifdaylight savings time is in effect、
0 if not.
<?php
$Now = gettimeofday();
echo "As an associative array:
";
foreach ($Now as $Key => $Value) {
echo "$Key => $Value
";
}
?>
出力結果は以下の通りです。
sec => 1261918156
usec => 724964
minuteswest => 0
dsttime => 0
本論文で述べたように、皆さんのphpプログラムの設計に役に立ちます。