MYSQL日時をPHPUNIXTIMEに変換する最も簡単な方法は何ですか?
例:
次に、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
ましたが、正しく動作しません。