使用DateTime时,在非对象上调用成员函数format()

时间:2015-04-27 15:43:27

标签: php date datetime strtotime

我正在尝试将日期格式从2015年12月31日转换为2015-12-31,但是我遇到了这个问题,我尝试了strtotime方法没有运气,因为我不断得到2031-12 -15

我现在已将方法更改为:

$csv_array[4] = '31/12/15';    
$insert_csv['custom_10'] = DateTime::createFromFormat('d/m/y', $csv_array[4])->format('Y-m-d');

似乎回应了正确的格式,但也抛出了错误:

Fatal error: Call to a member function format() on a non-object

0 个答案:

没有答案