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


PHP Taobao_RequestCheckUtil::checkMaxListSize方法代碼示例

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


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

示例1: check

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

示例2: check

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

示例3: check

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

示例4: check

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

示例5: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkMaxListSize($this->excludeArea, 4, "excludeArea");
     Taobao_RequestCheckUtil::checkNotNull($this->grade, "grade");
     Taobao_RequestCheckUtil::checkMaxListSize($this->grade, 4, "grade");
     Taobao_RequestCheckUtil::checkMaxListSize($this->point, 4, "point");
     Taobao_RequestCheckUtil::checkMaxListSize($this->postage, 4, "postage");
 }
開發者ID:liu33851861,項目名稱:CZD_Yaf_Extension,代碼行數:8,代碼來源:TmallCrmEquitySetRequest.php

示例6: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->categoryIds, "categoryIds");
     Taobao_RequestCheckUtil::checkMaxListSize($this->categoryIds, 200, "categoryIds");
     Taobao_RequestCheckUtil::checkNotNull($this->resultNum, "resultNum");
     Taobao_RequestCheckUtil::checkMaxValue($this->resultNum, 100, "resultNum");
     Taobao_RequestCheckUtil::checkMinValue($this->resultNum, 1, "resultNum");
 }
開發者ID:liu33851861,項目名稱:CZD_Yaf_Extension,代碼行數:8,代碼來源:SimbaInsightCatstopwordGetRequest.php

示例7: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->cids, "cids");
     Taobao_RequestCheckUtil::checkMaxListSize($this->cids, 1000, "cids");
     Taobao_RequestCheckUtil::checkMaxValue($this->days, 7, "days");
     Taobao_RequestCheckUtil::checkMinValue($this->days, 1, "days");
     Taobao_RequestCheckUtil::checkMaxValue($this->type, 2, "type");
     Taobao_RequestCheckUtil::checkMinValue($this->type, 1, "type");
 }
開發者ID:liu33851861,項目名稱:CZD_Yaf_Extension,代碼行數:9,代碼來源:ItemcatsIncrementGetRequest.php

示例8: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkMaxLength($this->description, 20, "description");
     Taobao_RequestCheckUtil::checkNotNull($this->name, "name");
     Taobao_RequestCheckUtil::checkMaxLength($this->name, 20, "name");
     Taobao_RequestCheckUtil::checkNotNull($this->nick, "nick");
     Taobao_RequestCheckUtil::checkMaxLength($this->nick, 500, "nick");
     Taobao_RequestCheckUtil::checkMaxListSize($this->permissionCodes, 2000, "permissionCodes");
 }
開發者ID:liu33851861,項目名稱:CZD_Yaf_Extension,代碼行數:9,代碼來源:SellercenterRoleAddRequest.php

示例9: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkMaxListSize($this->adgroupIds, 200, "adgroupIds");
     Taobao_RequestCheckUtil::checkNotNull($this->pageNo, "pageNo");
     Taobao_RequestCheckUtil::checkMinValue($this->pageNo, 1, "pageNo");
     Taobao_RequestCheckUtil::checkNotNull($this->pageSize, "pageSize");
     Taobao_RequestCheckUtil::checkMaxValue($this->pageSize, 200, "pageSize");
     Taobao_RequestCheckUtil::checkMinValue($this->pageSize, 1, "pageSize");
 }
開發者ID:liu33851861,項目名稱:CZD_Yaf_Extension,代碼行數:9,代碼來源:SimbaAdgroupsbyadgroupidsGetRequest.php

示例10: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->policyId, "policyId");
     Taobao_RequestCheckUtil::checkMaxListSize($this->policyId, 100, "policyId");
     Taobao_RequestCheckUtil::checkMaxLength($this->policyId, 6500, "policyId");
     Taobao_RequestCheckUtil::checkNotNull($this->status, "status");
     Taobao_RequestCheckUtil::checkNotNull($this->type, "type");
     Taobao_RequestCheckUtil::checkMaxValue($this->type, 1, "type");
     Taobao_RequestCheckUtil::checkMinValue($this->type, 0, "type");
 }
開發者ID:liu33851861,項目名稱:CZD_Yaf_Extension,代碼行數:10,代碼來源:JipiaoPolicystatusUpdateRequest.php

示例11: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->dealerOrderIds, "dealerOrderIds");
     Taobao_RequestCheckUtil::checkMaxListSize($this->dealerOrderIds, 50, "dealerOrderIds");
 }
開發者ID:liu33851861,項目名稱:CZD_Yaf_Extension,代碼行數:5,代碼來源:FenxiaoDealerRequisitionorderQueryRequest.php

示例12: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->fields, "fields");
     Taobao_RequestCheckUtil::checkNotNull($this->numIids, "numIids");
     Taobao_RequestCheckUtil::checkMaxListSize($this->numIids, 40, "numIids");
 }
開發者ID:liu33851861,項目名稱:CZD_Yaf_Extension,代碼行數:6,代碼來源:TaobaokeMobileItemsConvertRequest.php

示例13: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->orderId, "orderId");
     Taobao_RequestCheckUtil::checkMaxListSize($this->pnrInfo, 9, "pnrInfo");
 }
開發者ID:liu33851861,項目名稱:CZD_Yaf_Extension,代碼行數:5,代碼來源:TripJipiaoAgentOrderConfirmRequest.php

示例14: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->fields, "fields");
     Taobao_RequestCheckUtil::checkMaxListSize($this->numIids, 10, "numIids");
     Taobao_RequestCheckUtil::checkMaxLength($this->outerCode, 12, "outerCode");
     Taobao_RequestCheckUtil::checkMaxListSize($this->trackIids, 10, "trackIids");
 }
開發者ID:liu33851861,項目名稱:CZD_Yaf_Extension,代碼行數:7,代碼來源:TaobaokeItemsDetailGetRequest.php

示例15: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->occureTime, "occureTime");
     Taobao_RequestCheckUtil::checkNotNull($this->operateDetail, "operateDetail");
     Taobao_RequestCheckUtil::checkMaxLength($this->operateDetail, 200, "operateDetail");
     Taobao_RequestCheckUtil::checkMaxLength($this->operatorContact, 20, "operatorContact");
     Taobao_RequestCheckUtil::checkMaxLength($this->operatorName, 20, "operatorName");
     Taobao_RequestCheckUtil::checkMaxListSize($this->subTid, 50, "subTid");
     Taobao_RequestCheckUtil::checkNotNull($this->tradeId, "tradeId");
 }
開發者ID:zhang988925,項目名稱:CZD_Yaf_Extension,代碼行數:10,代碼來源:LogisticsOrderstorePushRequest.php


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