如何在Laravel Eloquent模型中将属性设为私有?

时间:2016-10-30 16:29:51

标签: php laravel eloquent

似乎太明显了,但我如何将类属性设为私有:

class User extends Model
{
   private $name; // or protected

}

$user = new User();
$user->name = "Mrs. Miggins";     // <- I want this to generate an error
echo $user->name; // Mrs. Miggins, (this too)

这是Laravel 5.1

1 个答案:

答案 0 :(得分:3)

尝试覆盖__get(){}__set(){}魔术方法,所以它会是这样的:

class User extends Model
{
  protected $privateProperties = ['name'];

  public function __get($varName) {
      $this->isPrivate($varName);

      return parent::__get($varName);
  }

  public function __set($varName, $value) {
      $this->isPrivate($varName);

      return parent::__set($varName, $value);
  }

  protected function isPrivate($varName) {
      if (in_array($varName, $this->privateProperties)) {
          throw new \Exception('The ' . $varName. ' property is private');
      }
  }
}
相关问题