日期时间到 Unix 时间戳
是否有人使用 PHP 函数将格式为 0000-00-00 00:00:00(datetimesql) 的日期转换为 unix 时间戳?
Is there anyone sitting on a PHP function to convert a date of format 0000-00-00 00:00:00(datetimesql) to unix timestamp?
推荐答案
要在 PHP 5.2 中执行此操作,您可以这样做:
To do this in PHP 5.2 you can do this:
$datetime = new DateTime();
echo $datetime->format('U');
从 PHP 5.3 开始,一种更新的方法是:
A newer way to do this as of PHP 5.3 is:
$datetime = new DateTime();
echo $datetime->getTimestamp();
相关文章