fnacimiento 和 ffallecimiento 是表中的日期
$personas = TableRegistry::get('Personas')->find();
$personas = $personas->select([
'fnacimiento' => 'date_format(fnacimiento, "%d/%m/%Y")',
'ffallecimiento' => 'date_format(ffallecimiento, "%d/%m/%Y")']);
$this->set('personas', $personas);
我想从0000-00-00移至00/00/0000(YYYY-MM-DD移至DD / MM / YYYY)
但是它不起作用,它给了我这个错误:
错误:在布尔文件上调用成员函数format() ... vendor / cakephp / chronos / src / Traits / FrozenTimeTrait.php行:161
查询很好,因为在mysql中它可以工作,但是cakephp的格式有问题,我不理解。