這篇文章主要介紹了php使用gettimeofday函數(shù)返回當(dāng)前時間并存放在關(guān)聯(lián)數(shù)組里的方法,涉及php中g(shù)ettimeofday函數(shù)的使用技巧,需要的朋友可以參考下
本文實例講述了php使用gettimeofday函數(shù)返回當(dāng)前時間并存放在關(guān)聯(lián)數(shù)組里的方法。分享給大家供大家參考。具體分析如下:
英文官方描述如下:
Key Description
sec Seconds since midnight before January 1, 1970
usec Microseconds since the sec value
minuteswest
Local time zone difference from GMT, in minutes
dsttime 1 iff daylight savings time is in effect,
0 iff not.
<?php
$Now = gettimeofday();
echo "As an associative array:\n";
foreach ($Now as $Key => $Value) {
echo "$Key => $Value\n";
}
?>
輸出結(jié)果如下:
sec => 1261918156
usec => 724964
minuteswest => 0
dsttime => 0
希望本文所述對大家的php程序設(shè)計有所幫助。
更多信息請查看IT技術(shù)專欄