将 MYSQL Datetime 转换为 PHP UNIXTIME 的最简单方法是什么?
例子:
然后将来自 mysql 的数据2012-12-31 23:59:59
转换为 UNIXTIME。
$dateTime = '2012-12-31 23:59:59'; // convert this to unixtime stamp
$unixTime = strtotime($dateTime); // this not work as expected
我试过strtotime
了,但它不能正常工作。