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


PHP RequestCheckUtil::checkMaxListSize方法代碼示例

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


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

示例1: check

 public function check()
 {
     RequestCheckUtil::checkMaxListSize($this->addGroups, 10, "addGroups");
     RequestCheckUtil::checkMaxListSize($this->deleteGroups, 10, "deleteGroups");
     RequestCheckUtil::checkNotNull($this->ruleId, "ruleId");
     RequestCheckUtil::checkMinValue($this->ruleId, 1, "ruleId");
 }
開發者ID:nexteee,項目名稱:php,代碼行數:7,代碼來源:CrmRuleGroupSetRequest.php

示例2: check

 public function check()
 {
     RequestCheckUtil::checkNotNull($this->fields, "fields");
     RequestCheckUtil::checkMaxListSize($this->fields, 200, "fields");
     RequestCheckUtil::checkNotNull($this->openIids, "openIids");
     RequestCheckUtil::checkMaxLength($this->openIids, 3000, "openIids");
 }
開發者ID:fanlibang,項目名稱:flbtaobaosdk,代碼行數:7,代碼來源:AtbItemsDetailGetRequest.php

示例3: check

 public function check()
 {
     RequestCheckUtil::checkNotNull($this->fields, "fields");
     RequestCheckUtil::checkNotNull($this->videoAppKey, "videoAppKey");
     RequestCheckUtil::checkNotNull($this->videoIds, "videoIds");
     RequestCheckUtil::checkMaxListSize($this->videoIds, 100, "videoIds");
 }
開發者ID:cranefly,項目名稱:crane,代碼行數:7,代碼來源:VideosQueryRequest.php

示例4: check

 public function check()
 {
     RequestCheckUtil::checkNotNull($this->categoryIds, "categoryIds");
     RequestCheckUtil::checkMaxListSize($this->categoryIds, 200, "categoryIds");
     RequestCheckUtil::checkNotNull($this->filter, "filter");
     RequestCheckUtil::checkNotNull($this->time, "time");
 }
開發者ID:cranefly,項目名稱:crane,代碼行數:7,代碼來源:SimbaInsightCatsbaseGetRequest.php

示例5: check

 public function check()
 {
     RequestCheckUtil::checkNotNull($this->buyerIds, "buyerIds");
     RequestCheckUtil::checkMaxListSize($this->buyerIds, 10, "buyerIds");
     RequestCheckUtil::checkNotNull($this->groupIds, "groupIds");
     RequestCheckUtil::checkMaxListSize($this->groupIds, 10, "groupIds");
 }
開發者ID:yunsite,項目名稱:tp-coupon,代碼行數:7,代碼來源:CrmMembersGroupBatchaddRequest.php

示例6: check

 public function check()
 {
     RequestCheckUtil::checkNotNull($this->subscribeKey, "subscribeKey");
     RequestCheckUtil::checkMaxListSize($this->subscribeValues, 20, "subscribeValues");
     RequestCheckUtil::checkNotNull($this->topic, "topic");
     RequestCheckUtil::checkMaxListSize($this->trackIids, 20, "trackIids");
 }
開發者ID:New7,項目名稱:3w,代碼行數:7,代碼來源:IncrementSubscriptionAddRequest.php

示例7: check

 public function check()
 {
     RequestCheckUtil::checkNotNull($this->categoryIdList, "categoryIdList");
     RequestCheckUtil::checkMaxListSize($this->categoryIdList, 5, "categoryIdList");
     RequestCheckUtil::checkNotNull($this->endDate, "endDate");
     RequestCheckUtil::checkNotNull($this->startDate, "startDate");
 }
開發者ID:huqq1987,項目名稱:clone-lemon,代碼行數:7,代碼來源:SimbaInsightCatsdataGetRequest.php

示例8: check

 public function check()
 {
     RequestCheckUtil::checkMinValue($this->currentPage, 1, "currentPage");
     RequestCheckUtil::checkMaxValue($this->pageSize, 20, "pageSize");
     RequestCheckUtil::checkMinValue($this->pageSize, 1, "pageSize");
     RequestCheckUtil::checkMaxListSize($this->spreadIds, 20, "spreadIds");
 }
開發者ID:fanlibang,項目名稱:flbtaobaosdk,代碼行數:7,代碼來源:PromotionCouponSellerSearchRequest.php

示例9: check

 public function check()
 {
     RequestCheckUtil::checkNotNull($this->endDate, "endDate");
     RequestCheckUtil::checkNotNull($this->serviceStaffId, "serviceStaffId");
     RequestCheckUtil::checkMaxListSize($this->serviceStaffId, 30, "serviceStaffId");
     RequestCheckUtil::checkNotNull($this->startDate, "startDate");
 }
開發者ID:ourwaystudio,項目名稱:phptopsdk-orders,代碼行數:7,代碼來源:WangwangEserviceEvalsGetRequest.php

示例10: check

 public function check()
 {
     RequestCheckUtil::checkNotNull($this->groupName, "groupName");
     RequestCheckUtil::checkMaxLength($this->groupName, 32, "groupName");
     RequestCheckUtil::checkNotNull($this->nicks, "nicks");
     RequestCheckUtil::checkMaxListSize($this->nicks, 200, "nicks");
 }
開發者ID:huqq1987,項目名稱:clone-lemon,代碼行數:7,代碼來源:TmcGroupAddRequest.php

示例11: check

 public function check()
 {
     RequestCheckUtil::checkNotNull($this->filter, "filter");
     RequestCheckUtil::checkNotNull($this->time, "time");
     RequestCheckUtil::checkNotNull($this->words, "words");
     RequestCheckUtil::checkMaxListSize($this->words, 170, "words");
 }
開發者ID:dw250100785,項目名稱:shopnc,代碼行數:7,代碼來源:SimbaInsightWordsbaseGetRequest.php

示例12: check

 public function check()
 {
     RequestCheckUtil::checkNotNull($this->itemId, "itemId");
     RequestCheckUtil::checkNotNull($this->ownerUserId, "ownerUserId");
     RequestCheckUtil::checkNotNull($this->proportion, "proportion");
     RequestCheckUtil::checkMaxListSize($this->proportion, 20, "proportion");
 }
開發者ID:554119220,項目名稱:kjrscrm,代碼行數:7,代碼來源:WlbWmsSkuCombinationCreateUpdateRequest.php

示例13: check

 public function check()
 {
     RequestCheckUtil::checkNotNull($this->btime, "btime");
     RequestCheckUtil::checkNotNull($this->etime, "etime");
     RequestCheckUtil::checkNotNull($this->queryIds, "queryIds");
     RequestCheckUtil::checkMaxListSize($this->queryIds, 30, "queryIds");
 }
開發者ID:ourwaystudio,項目名稱:phptopsdk-orders,代碼行數:7,代碼來源:WangwangEserviceNewevalsGetRequest.php

示例14: check

 public function check()
 {
     RequestCheckUtil::checkMaxListSize($this->groupNames, 20, "groupNames");
     RequestCheckUtil::checkMinValue($this->pageNo, 1, "pageNo");
     RequestCheckUtil::checkMaxValue($this->pageSize, 100, "pageSize");
     RequestCheckUtil::checkMinValue($this->pageSize, 1, "pageSize");
 }
開發者ID:huqq1987,項目名稱:clone-lemon,代碼行數:7,代碼來源:TmcGroupsGetRequest.php

示例15: check

 public function check()
 {
     RequestCheckUtil::checkNotNull($this->cpCode, "cpCode");
     RequestCheckUtil::checkNotNull($this->shippingAddress, "shippingAddress");
     RequestCheckUtil::checkNotNull($this->tradeOrderInfoCols, "tradeOrderInfoCols");
     RequestCheckUtil::checkMaxListSize($this->tradeOrderInfoCols, 1000, "tradeOrderInfoCols");
 }
開發者ID:koery,項目名稱:Vcanbuy,代碼行數:7,代碼來源:WlbWaybillGetRequest.php


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