當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Region::where方法代碼示例

本文整理匯總了PHP中Region::where方法的典型用法代碼示例。如果您正苦於以下問題:PHP Region::where方法的具體用法?PHP Region::where怎麽用?PHP Region::where使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Region的用法示例。


在下文中一共展示了Region::where方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getRegions

 public static function getRegions($continentString)
 {
     $regions = Region::where('continent', '=', $continentString)->get();
     return $regions;
 }
開發者ID:aorly,項目名稱:vAMSYS,代碼行數:5,代碼來源:ContinentsRepository.php

示例2: getRegion

 /**
  * 獲取區域信息
  *
  * @return Response
  */
 public function getRegion($regionID, $regionLevel)
 {
     $shopRegions = Region::where('wy_region_parentid', $regionID)->where('wy_region_level', $regionLevel)->get(array('wy_region_id', 'wy_region_name', 'wy_region_parentid', 'wy_region_shortname'));
     if (empty($shopRegions->toArray())) {
         return View::make('admin.manage.shop.shopregion')->withError(Lang::get('errormessages.-10041'));
     } else {
         return View::make('admin.manage.shop.shopregion', compact('shopRegions'));
     }
 }
開發者ID:antinglizi,項目名稱:admin,代碼行數:14,代碼來源:ShopController.php

示例3: listRegionsOneNation

 /**
  * @param $nation_id
  * @return mixed
  */
 public static function listRegionsOneNation($nation_id)
 {
     return Region::where('nation_id', '=', $nation_id)->lists('libelle', 'id');
 }
開發者ID:birdiebel,項目名稱:G2016,代碼行數:8,代碼來源:Region.php

示例4: function

<?php

Route::group(['prefix' => 'ajax'], function () {
    # SelectBox Nations
    Route::post('sbNations', function () {
        $results = Nation::all();
        $code = '';
        foreach ($results as $result) {
            $code .= '<option value="' . $result->id . '">' . $result->libelle . '</option>';
        }
        return $code;
    });
    # SelectBox Regions
    Route::post('sbRegions/{nation_id}', function ($nation_id) {
        $results = Region::where('nation_id', '=', $nation_id)->get();
        $code = '';
        foreach ($results as $result) {
            $code .= '<option value="' . $result->id . '">' . $result->libelle . '</option>';
        }
        return $code;
    });
    # SelectBox Clubs
    Route::post('sbClubs/{region_id}', function ($region_id) {
        $results = Club::where('region_id', '=', $region_id)->get();
        $code = '';
        foreach ($results as $result) {
            $code .= '<option value="' . $result->id . '">' . $result->nom . '</option>';
        }
        return $code;
    });
    # LoadPage
開發者ID:birdiebel,項目名稱:G2016,代碼行數:31,代碼來源:ajax.php

示例5: getRegions

 /**
  * AJAX response for autocomplete of regions.
  */
 public function getRegions()
 {
     $matches = array();
     $regions = Region::where('regionName', 'LIKE', '%' . Input::get('term') . '%')->get();
     foreach ($regions as $region) {
         $matches[] = '{"label":"' . $region->regionName . '","value":"' . $region->regionID . '"}';
     }
     echo '[' . implode(',', $matches) . ']';
 }
開發者ID:orbitroom,項目名稱:eve-traders-handbook,代碼行數:12,代碼來源:SettingsController.php


注:本文中的Region::where方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。