0

この関数が何を返すのかわかりません。レコード属性を変更しただけですか、それ以外ですか?

protected function beforeSave()
{
    if ($this->getIsNewRecord())
    {
        $this->created = Yii::app()->localtime->UTCNow;
    }             
     $this->lastmodified = Yii::app()->localtime->UTCNow;

     if ($this->dob == '') {
         $this->setAttribute('dob', null);
     } else {
        $this->dob=date('Y-m-d', strtotime($this->dob));
     }
     if($this->image!="")
     {
        $this->imgfile_name =  $this->image->name;
        $this->imgfile_type =  $this->image->type;
        $this->imgfile_size =  $this->image->size;
     }  
     $this->phone=substr($this->phone,0,3).substr($this->phone,4,3).substr($this->phone,8,4);

    return parent::beforeSave();
}
4

1 に答える 1

1

CActiveRecord::beforeSavetrueモデルが有効な状態にあり、保存できる場合とそうでない場合に戻ることになってfalseいます。

于 2012-05-18T19:56:03.837 に答える