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


PHP RequestCheckUtil::checkMaxLength方法代碼示例

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


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

示例1: check

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

示例2: check

 public function check()
 {
     RequestCheckUtil::checkNotNull($this->groupId, "groupId");
     RequestCheckUtil::checkMinValue($this->groupId, 1, "groupId");
     RequestCheckUtil::checkNotNull($this->newGroupName, "newGroupName");
     RequestCheckUtil::checkMaxLength($this->newGroupName, 15, "newGroupName");
 }
開發者ID:yunsite,項目名稱:tp-coupon,代碼行數:7,代碼來源:CrmGroupUpdateRequest.php

示例3: check

 public function check()
 {
     RequestCheckUtil::checkNotNull($this->adgroupId, "adgroupId");
     RequestCheckUtil::checkNotNull($this->imgUrl, "imgUrl");
     RequestCheckUtil::checkNotNull($this->title, "title");
     RequestCheckUtil::checkMaxLength($this->title, 40, "title");
 }
開發者ID:huqq1987,項目名稱:clone-lemon,代碼行數:7,代碼來源:SimbaCreativeAddRequest.php

示例4: check

 public function check()
 {
     RequestCheckUtil::checkMaxLength($this->code, 40, "code");
     RequestCheckUtil::checkNotNull($this->grantType, "grantType");
     RequestCheckUtil::checkMaxLength($this->grantType, 20, "grantType");
     RequestCheckUtil::checkMaxLength($this->refreshToken, 40, "refreshToken");
 }
開發者ID:dw250100785,項目名稱:shopnc,代碼行數:7,代碼來源:AlipaySystemOauthTokenRequest.php

示例5: check

 public function check()
 {
     RequestCheckUtil::checkNotNull($this->localId, "localId");
     RequestCheckUtil::checkNotNull($this->remoteId, "remoteId");
     RequestCheckUtil::checkNotNull($this->token, "token");
     RequestCheckUtil::checkMaxLength($this->token, 10, "token");
 }
開發者ID:New7,項目名稱:3w,代碼行數:7,代碼來源:TmcEndpointTokenCheckRequest.php

示例6: 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

示例7: check

 public function check()
 {
     RequestCheckUtil::checkNotNull($this->campaignId, "campaignId");
     RequestCheckUtil::checkNotNull($this->onlineStatus, "onlineStatus");
     RequestCheckUtil::checkNotNull($this->title, "title");
     RequestCheckUtil::checkMaxLength($this->title, 40, "title");
 }
開發者ID:cranefly,項目名稱:crane,代碼行數:7,代碼來源:SimbaCampaignUpdateRequest.php

示例8: check

 public function check()
 {
     RequestCheckUtil::checkNotNull($this->propertyKey, "propertyKey");
     RequestCheckUtil::checkNotNull($this->propertyValue, "propertyValue");
     RequestCheckUtil::checkMaxLength($this->propertyValue, 100, "propertyValue");
     RequestCheckUtil::checkNotNull($this->topic, "topic");
 }
開發者ID:New7,項目名稱:3w,代碼行數:7,代碼來源:TmcFollowAddRequest.php

示例9: check

 public function check()
 {
     RequestCheckUtil::checkNotNull($this->merchantOrderNo, "merchantOrderNo");
     RequestCheckUtil::checkMaxLength($this->merchantOrderNo, 32, "merchantOrderNo");
     RequestCheckUtil::checkNotNull($this->orderType, "orderType");
     RequestCheckUtil::checkMaxLength($this->orderType, 10, "orderType");
 }
開發者ID:noikiy,項目名稱:Shopnc-1,代碼行數:7,代碼來源:AlipayEbppBillGetRequest.php

示例10: check

 public function check()
 {
     RequestCheckUtil::checkNotNull($this->cooperateId, "cooperateId");
     RequestCheckUtil::checkNotNull($this->endRemainDays, "endRemainDays");
     RequestCheckUtil::checkNotNull($this->endRemark, "endRemark");
     RequestCheckUtil::checkMaxLength($this->endRemark, 2000, "endRemark");
 }
開發者ID:koery,項目名稱:Vcanbuy,代碼行數:7,代碼來源:FenxiaoCooperationTerminateRequest.php

示例11: check

 public function check()
 {
     RequestCheckUtil::checkNotNull($this->pagerequest, "pagerequest");
     RequestCheckUtil::checkNotNull($this->query, "query");
     RequestCheckUtil::checkNotNull($this->siteKey, "siteKey");
     RequestCheckUtil::checkMaxLength($this->siteKey, 32, "siteKey");
 }
開發者ID:kwdwkiss,項目名稱:trial,代碼行數:7,代碼來源:SpContentListGetRequest.php

示例12: 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

示例13: check

 public function check()
 {
     RequestCheckUtil::checkNotNull($this->dbName, "dbName");
     RequestCheckUtil::checkMaxLength($this->dbName, 64, "dbName");
     RequestCheckUtil::checkNotNull($this->instanceName, "instanceName");
     RequestCheckUtil::checkMaxLength($this->instanceName, 30, "instanceName");
 }
開發者ID:zhendeguoke1008,項目名稱:weixin_shop,代碼行數:7,代碼來源:RdsDbCreateRequest.php

示例14: check

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

示例15: check

 public function check()
 {
     RequestCheckUtil::checkNotNull($this->siteKey, "siteKey");
     RequestCheckUtil::checkMaxLength($this->siteKey, 32, "siteKey");
     RequestCheckUtil::checkNotNull($this->tagname, "tagname");
     RequestCheckUtil::checkMaxLength($this->tagname, 6, "tagname");
 }
開發者ID:cranefly,項目名稱:crane,代碼行數:7,代碼來源:SpContentDeletetagRequest.php


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