将 ISO 8601 转换为 unixtimestamp

2022-01-13 00:00:00 timestamp date php date-format time-format

如何转换2012-01-18T11:45:00+01:00 (ISO 8601) 到 1326883500 (unixtimestamp) 在 PHP 中?

How can I convert 2012-01-18T11:45:00+01:00 (ISO 8601) to 1326883500 (unixtimestamp) in PHP?

推荐答案

echo date("U",strtotime('2012-01-18T11:45:00+01:00'));

相关文章