在PHP 中將ISO8601 轉換為MySQL DATE 格式
問:如何轉換ISO8601 格式的日期時間'2014-03-133T:1 05: 50.240Z' 到PHP 中格式為'2014-03-13' 的MySQL DATE?
答:這是一個利用PHP 的strtotime 和日期函數的方法:
<code class="php">$date = '2014-03-13T09:05:50.240Z'; $fixed = date('Y-m-d', strtotime($date)); echo $fixed; // Outputs '2014-03-13'</code>
有關詳細文檔日期函數,參考:http://php.net/manual/en/ function.date.php
或者,如果strtotime回傳0,試試這個修改版本:
<code class="php">$date = '2014-03-13T09:05:50.240Z'; $fixed = date('Y-m-d', strtotime(substr($date,0,10))); echo $fixed; // Outputs '2014-03-13'</code>
以上是如何在 PHP 中將 ISO8601 日期時間轉換為 MySQL 日期格式?的詳細內容。更多資訊請關注PHP中文網其他相關文章!