changed() public method

Return TRUE if any/specified field value has changed
public changed ( $key = NULL ) : boolean
$key string
return boolean
コード例 #1
0
ファイル: User.php プロジェクト: Kekesed/Kambeng-Blog
 public function save()
 {
     if (parent::changed('pass')) {
         $this->pass = $this->passwordify($this->pass);
     }
     parent::save();
 }