3

我已经创建了一个注册表单。我有 3 个选择框。日月年。在我的数据库中,我有一列名为“生日”,格式为“日期”。现在我想将所有三个放在一起并将结果插入数据库。

public function beforeSave($options = array()){
    $this->data['User']['Birthday'] = $this->data['User']['Year'] . '-' . $this->data['User']['Month'] .'-' . $this->data['User']['Day'];
    return true;
}

但这不起作用:(

这些字段(日、月、年、生日)都没有验证规则。

我怎样才能做到这一点?

4

1 回答 1

1

您可以在模型中尝试以下代码:

public function beforeSave($options = array()){
   if(!empty($this->data)){
       //pr($this->data);die;
       $this->data['User']['Birthday'] = date('Y-m-d', strtotime($this->data['User']['Year'] . '-' . $this->data['User']['Month'] .'-' . $this->data['User']['Day']));
      unset($this->data['User']['Year']);
      unset($this->data['User']['Month']);
      unset($this->data['User']['Day']);
   }
   return true;   
}

您的表单中必须有以下表单字段:

<?php echo $this->Form->create('User', array('url' => $this->params));
      echo $this->Form->input('Year', array('options' => $year_options, 'type' => 'select'));
      echo $this->Form->input('Month', array('options' => $month_options, 'type' => 'select'));
      echo $this->Form->input('Day', array('options' => $day_options, 'type' => 'select'));
于 2012-09-03T04:39:14.173 回答