我每天都有3个dropdwons。直到最近我才将它们组合在一起,以mysql格式在db中保存 date_of_inspection 。我正在使用Day,month和year cakephp形式的助手。这就是我正在做的事情
$this->data['Cabinet']['date_of_inspection'] =
$this->data['Cabinet']['date_of_inspection']['year'].'-'.
$this->data['Cabinet']['date_of_inspection']['month'].'-'.
$this->data['Cabinet']['date_of_inspection']['day'];
我删除了上面的行,但日期仍以mysql日期格式存储。怎么会 ?? cakephp会不会这样做。