我有一个自定义类型Clinical Record
,其中某些字段是cli:date_created
. 此属性的类型是Date
。
当我尝试设置此字段(使用 php)时,我得到Argument of type "string" given but argument of type "\DateTime" was expected."
. 但我给出的是日期而不是字符串。
'cli:date_created' => date('d/m/Y',strtotime($resultado[0]['fecha_alta'])),
我必须做什么才能插入日期?因为我不想在该字段中将类型从日期更改为字符串。