标签: php datetime cakephp unix-timestamp
我有一个日期时间字符串,格式为:
2015-03-02T04:46:48+01:00
我需要将它转换为UNIX时间(整数类型)(几乎所有研究结果都是关于将UNIX时间转换为datetime-string,所以很难过)。请帮忙。谢谢大家!
答案 0 :(得分:1)
使用strtotime:
echo strtotime('2015-03-02T04:46:48+01:00');
将返回:
1456890408