0

我很害怕,但我找不到任何功能?我可以做这个

echo date("Y-m-d g:i:s a",  1333442414662) . "\n";

但我找不到任何函数来从函数转换时间

date("Y-m-d H:i:s", time());

到 unix 时间戳

4

2 回答 2

1

时间?http://php.net/manual/en/function.strtotime.php

于 2012-05-09T07:52:06.287 回答
0

这很简单:

$yourdate =date("Y-m-d H:i:s", time());

strtotime($yourdate);
于 2012-05-09T08:23:37.717 回答