PHP Date/Time 参考手册
返回当前时间的 Unix 时间戳,并格式化为日期:
<?php $t=time(); echo($t . "<br>"); echo(date("Y-m-d",$t)); ?>
time() 函数返回自 Unix 纪元(January 1 1970 00:00:00 GMT)起的当前时间的秒数。