欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP在CLI运行的时候strtotime('2016-9-22 59:59:59') 无法返回时间戳

程序员文章站 2022-05-09 15:29:02
...
PHP在CLI运行的时候strtotime('2016-9-22 59:59:59') 无法返回时间戳,可是这个时间明明是正确的啊???

回复内容:

PHP在CLI运行的时候strtotime('2016-9-22 59:59:59') 无法返回时间戳,可是这个时间明明是正确的啊???

$ php -r "var_dump(strtotime('2016-9-22 59:59:59'));"
bool(false)

时间格式不合法返回时,strtotime函数返回false。这里的59点。。。

php5.1.0之前,出错返回-1

相关标签: php