在PHP中使用日期格式时出现意外答案

时间:2019-03-30 08:04:54

标签: php

我想从日期中获取月份,这些日期是从数据库中获取的,因此某些日期为'0000-00-00'格式。

//例如,我在下方输入这个日期

$arr='0000-00-00';
$thismonth = date('m', strtotime($arr));
echo $thismonth;

///在这里,我期望为00或null,但答案是11。

1 个答案:

答案 0 :(得分:1)

date永远不会是'0000-00-00'或0或null,在date函数中您永远不会输入错误的值 所以检查

$arr='0000-00-00';
if($arr != '0000-00-00'){
$thismonth = date('m', strtotime($arr));
echo $thismonth;
}
else{
$thismonth = '00';
}