time 返回当前的 Unix 时间戳


time

(PHP 4, PHP 5)

time返回当前的 Unix 时间戳

说明

int time ( void )

返回自从 Unix 纪元(格林威治时间 1970 年 1 月 1 日 00:00:00)到当前时间的秒数。

Tip

自 PHP 5.1 起在 $_SERVER['REQUEST_TIME'] 中保存了发起该请求时刻的时间戳。

Example #1 time() 例子

<?php
$nextWeek 
time() + (24 60 60);
                   
// 7 days; 24 hours; 60 mins; 60secs
echo 'Now:       'date('Y-m-d') ." ";
echo 
'Next Week: 'date('Y-m-d'$nextWeek) ." ";
?>

以上例程的输出类似于:

Now:       2005-03-30
Next Week: 2005-04-07

参见 date()microtime()


«  tidy_warning_count
» timezone_abbreviations_list
快速导航

Copyright © 2016 phpStudy | 豫ICP备2021030365号-3