0
可能重複:
convert any date string to timestamp without timezone字符串到PHP時間戳
我有一個字符串,它看起來像這樣,想一個PHP時間戳格式。 我可以要求客戶端在必要時更改字符串的格式。
2010/08/11 6時33分00秒
可能重複:
convert any date string to timestamp without timezone字符串到PHP時間戳
我有一個字符串,它看起來像這樣,想一個PHP時間戳格式。 我可以要求客戶端在必要時更改字符串的格式。
2010/08/11 6時33分00秒
使用的strtotime:
$date = date('Y/m/d H:i:s', strtotime('2010/08/11 06:33:00'));