本文整理汇总了PHP中Illuminate\Database\Eloquent\Model::__set方法的典型用法代码示例。如果您正苦于以下问题:PHP Model::__set方法的具体用法?PHP Model::__set怎么用?PHP Model::__set使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Illuminate\Database\Eloquent\Model
的用法示例。
在下文中一共展示了Model::__set方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __set
/**
* {@inheritdoc}
*/
public function __set($key, $value)
{
if (array_key_exists($key, $this->aliases)) {
$key = $this->aliases[$key];
}
parent::__set($key, $value);
}
示例2: __set
public function __set($key, $value)
{
$columns = $this->getTableColumns();
if ($this->hasSetMutator($key) || in_array($key, $this->getDates()) && $value || $this->isJsonCastable($key) && !is_null($value) || in_array($key, $columns)) {
return parent::__set($key, $value);
}
$this->setMeta($key, $value);
}
示例3: set
/**
* Set model's attribute
* @param $method (eg 'setId')
* @param $d
* @return self
*/
protected function set($method, $d)
{
$key = $this->match(lcfirst(substr($method, 3)));
$this->model->__set($key, $d);
return $this;
}
示例4: __set
/**
* Dynamically set attributes.
*
* @param string $key
* @param mixed $value
* @return void
*/
public function __set($key, $value)
{
// Dynamically set the encryptable attribute
if (!empty($value) && $this->setDynamicEncryptable($key, $value)) {
return;
}
// Fallback to the default Eloquent dynamic setter
parent::__set($key, $value);
// Dynamically juggle the attribute.
$this->setDynamicJuggle($key, $value);
}
示例5: __set
/**
* Mustard uses camel case for class properties, and snake case for database columns.
*
* @param string $property
* @param mixed $value
*/
public function __set($property, $value)
{
parent::__set(snake_case($property), $value);
}