2016-01-09 114 views

回答

0

可以使用strtotime功能如下:

<?php 
echo strtotime("Dec 09 2015, 00:21:58"); 
?> 
1

您可以使用DateTime類和getTimestamp方法。

$date = new DateTime('Dec 09 2015, 00:21:58'); 
echo $date->getTimestamp(); 

strtotime功能。

strtotime('Dec 09 2015, 00:21:58')