将本地时间打印为索引数组和关联数组:
<?php
print_r(localtime());
echo "<br><br>";
print_r(localtime(time(),true));
?>
亲自试一试 »
localtime() 函数返回当地时间。
localtime(
timestamp, is_assoc)
Parameter | Description |
---|---|
timestamp | Optional. Specifies a Unix timestamp that defaults to the current local time, time(), if no timestamp is specified |
is_assoc | Optional. Specifies whether to return an associative or indexed array. FALSE = the array returned is an indexed array. TRUE = the array returned is an associative array. FALSE is default. The keys of the associative array are:
|
返回值: | 返回一个包含 Unix 时间戳组成部分的数组 |
---|---|
PHP 版本: | 4+ |
PHP 变更日志: | PHP 5.1:现在出现 E_STRICT 和 E_NOTICE 时区错误 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!