大家好,我正在使用strtotime将日期格式从Ymd更改为dmY,它可以正常工作,但是在数据库(0000-00-00)中未定义日期的地方,显示30-11--0001,其中日期没有在数据库中定义
$datee=$row['datee'];
$date1= date('d-m-Y', strtotime($datee));
echo $date1;
如果日期为2018-10-05,则显示05-10-2018,但如果日期未在如0000-00-00这样的数据库中定义,则显示30-11--0001