當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。