PHP localtime函数——获取本地的时间,localtime函数可获取本地的时间,返回值为一个数组。
PHP localtime函数 语法
array localtime ( int timestamp , bool is_associative)
参数timestamp是时间戳,如果没有给出,则使用从time()函数返回的当前时间。参数is_associative如果设为0或未提供,则返回的是普通的数字索引数组。如果该参数设为1,则localtime()函数返回包含所有从C函数的localtime()函数调用所返回的不同单元的结合数组。
该函数返回的关联数组元素的说明如表所示。
PHP localtime函数 示例
本示例应用localtime()函数获取本地时间,并输出数组元素
其代码如下:
<?php
day=time();
print_r(localtime());
print_r(localtime(day,1)); //设置参数is_associative的值为1
?>
本示例的运行结果为:
Array ( [0] => 10 [1] => 32 [2] => 13 [3] => 28 [4] => 2 [5] => 111 [6] => 1 [7] => 86 [8] =>0 )
Array ( [tm_sec] => 10 [tm_min] => 32 [tm_hour] => 13 [tm_mday] => 28 [tm_mon] => 2
[tm_year] => 111 [tm_wday] => 1 [tm_yday] => 86 [tm_isdst] => 0 )