在 PHP 中将 ISO8601 转换为 MySQL 日期格式
假设您有一个 ISO8601 格式的日期,例如“2014-03-13T09” :05:50.240Z”,并且您希望将其转换为 MySQL DATE 格式,例如“2014-03-13”。以下是使用 PHP 实现此转换的方法:
<code class="php">$date = '2014-03-13T09:05:50.240Z'; $fixed = date('Y-m-d', strtotime($date));</code>
strtotime() 函数将 ISO8601 字符串转换为 PHP 时间戳,然后可以使用 date() 函数对其进行格式化以获得所需的日期格式.
如果 strtotime() 返回 0,您可以尝试以下解决方法:
<code class="php">$date = '2014-03-13T09:05:50.240Z'; $fixed = date('Y-m-d', strtotime(substr($date, 0, 10)));</code>
此替代方法可确保与 strtotime() 可能无法正确解析的日期兼容。
以上是如何在 PHP 中将 ISO8601 日期转换为 MySQL DATE 格式?的详细内容。更多信息请关注PHP中文网其他相关文章!