将此字符串转换为时间戳PHP
作者:互联网
参见英文答案 > Convert one date format into another in PHP 15个
我有这个字符串:“13/10 15:00”我想将它转换为时间戳,但是当我这样做时:
$timestamp = strtotime("13/10 15:00");
它返回一个空值.
解决方法:
在您的代码中,strtotime()尝试将13/10转换为第13个月的第十天,这将返回错误.
如果要使用自定义格式解析日期字符串,最好使用DateTime :: createFromFormat()代替:
$dtime = DateTime::createFromFormat("d/m G:i", "13/10 15:00");
$timestamp = $dtime->getTimestamp();
标签:date-conversion,strtotime,php,timestamp 来源: https://codeday.me/bug/20190926/1818772.html