本文整理汇总了PHP中Illuminate\Database\Eloquent\Builder::__call方法的典型用法代码示例。如果您正苦于以下问题:PHP Builder::__call方法的具体用法?PHP Builder::__call怎么用?PHP Builder::__call使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Illuminate\Database\Eloquent\Builder
的用法示例。
在下文中一共展示了Builder::__call方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __call
/**
* Dynamically handle calls into the query instance.
* @param string $method
* @param array $parameters
* @return mixed
*/
public function __call($method, $parameters)
{
if ($this->model->methodExists($scope = 'scope' . ucfirst($method))) {
return $this->callScope($scope, $parameters);
}
return parent::__call($method, $parameters);
}
示例2: __call
/**
* Dynamically handle calls into the query instance.
*
* @param string $method
* @param array $parameters
* @return mixed
*/
public function __call($method, $parameters)
{
$scopeMethod = 'scope' . ucfirst($method);
if (method_exists($this->repository, $scopeMethod)) {
return $this->callRepositoryScope($scopeMethod, $parameters);
}
return parent::__call($method, $parameters);
}
示例3: __call
public function __call($method, $parameters)
{
if (in_array($method, $this->_where_meta_methods)) {
$db = DB::table($this->_meta_table)->where('meta_key', $parameters[0]);
if (in_array($method, ['whereMeta', 'orWhereMeta'])) {
$db->where('meta_value', $parameters[1], $parameters[2]);
} else {
if ($method == 'whereBetweenMeta') {
$db->whereBetween('meta_value', $parameters[1]);
} else {
if ($method == 'whereNotBetweenMeta') {
$db->whereNotBetween('meta_value', $parameters[1]);
} else {
if ($method == 'whereInMeta') {
$db->whereIn('meta_value', $parameters[1]);
} else {
if ($method == 'whereNotInMeta') {
$db->whereNotIn('meta_value', $parameters[1]);
} else {
if ($method == 'whereNullMeta') {
$db->where('type', 'null');
} else {
if ($method == 'whereNotNullMeta') {
$db->where('type', '<>', 'null');
}
}
}
}
}
}
}
$parent_ids = $db->lists('parent_id');
if ($method == 'orWhereMeta') {
return $this->orWhere(function ($query) use($parent_ids) {
return $query->whereIn('id', $parent_ids);
});
}
return $this->whereIn('id', $parent_ids);
}
return parent::__call($method, $parameters);
}