代码之家  ›  专栏  ›  技术社区  ›  aWebDeveloper

cakephp表单/日期助手

  •  1
  • aWebDeveloper  · 技术社区  · 14 年前

    检验日期 在数据库中以mysql格式。我使用的是日、月和年的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'];
    

    1 回复  |  直到 9 年前
        1
  •  1
  •   deceze    14 年前

    简言之,是的。日期和时间“子数组”自动 deconstructed