本文整理匯總了PHP中RequestCheckUtil::checkEmpty方法的典型用法代碼示例。如果您正苦於以下問題:PHP RequestCheckUtil::checkEmpty方法的具體用法?PHP RequestCheckUtil::checkEmpty怎麽用?PHP RequestCheckUtil::checkEmpty使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類RequestCheckUtil
的用法示例。
在下文中一共展示了RequestCheckUtil::checkEmpty方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: check
function check()
{
RequestCheckUtil::checkEmpty($this->getThemeId(), "field");
}
示例2: check
function check()
{
//是否為空
RequestCheckUtil::checkEmpty($this->getSearchKey(), "field");
//頁數
RequestCheckUtil::checkMaxValue($this->getPage(), ceil(400 / $this->getPerpage()), "page");
//翻頁數量
RequestCheckUtil::checkMaxValue($this->getPerpage(), 40, "perpage");
//每頁顯示的數量檢測
RequestCheckUtil::checkMinValue($this->getPerpage(), 0, "perpage");
//每頁顯示的數量檢測
//折扣價檢測
RequestCheckUtil::checkMinValue($this->getStartPromotion(), 0, "start_promotion");
RequestCheckUtil::checkMaxValue($this->getStartPromotion(), $this->getEndPromotion(), "promotion");
//檢測折扣價下限是否大於上限 }
//賣家信用檢測
RequestCheckUtil::checkMinValue($this->getStartCredit(), 0, "start_credit");
RequestCheckUtil::checkMaxValue($this->getEndCredit(), 20, "end_credit");
RequestCheckUtil::checkMaxValue($this->getStartCredit(), $this->getEndCredit(), "credit");
//監測賣家信用等級是否下限大於上限
//傭金比例檢測
RequestCheckUtil::checkMinValue($this->getStartCommissionRate(), 0, "start_commission_rate");
RequestCheckUtil::checkMaxValue($this->getStartCommissionRate(), 10000, "start_commission_rate");
RequestCheckUtil::checkMaxValue($this->getStartCommissionRate(), $this->getEndCommissionRate(), "start_commission_rate");
//監測賣家信用等級是否下限大於上限
//推廣量檢測
RequestCheckUtil::checkMinValue($this->getStartCommissionVolume(), 0, "start_commission_volume");
RequestCheckUtil::checkMaxValue($this->getStartCommissionVolume(), $this->getEndCommissionVolume(), "commission_volume");
//檢測折扣價下限是否大於上限
//推廣類型
RequestCheckUtil::checkValueWithIn($this->getItemType(), array(1, 2), "item_type");
//排序方式
RequestCheckUtil::checkValueWithIn($this->getSort(), self::$allowSort, "sort");
}