本文整理汇总了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");
}
示例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");
}
示例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");
}
示例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");
}
示例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");
}
示例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");
}
示例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");
}
示例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");
}
示例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");
}
示例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");
}
示例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");
}
示例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");
}
示例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");
}
示例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");
}
示例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");
}