当前位置: 首页>>代码示例>>PHP>>正文


PHP Builder::__call方法代码示例

本文整理汇总了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);
 }
开发者ID:tamboer,项目名称:LaravelOctober,代码行数:13,代码来源:Builder.php

示例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);
 }
开发者ID:ghunti,项目名称:laravel-base,代码行数:15,代码来源:BaseBuilder.php

示例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);
 }
开发者ID:sukohi,项目名称:metaphor,代码行数:41,代码来源:MetaphorEloquentBuilder.php


注:本文中的Illuminate\Database\Eloquent\Builder::__call方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。