当前位置: 首页>>代码示例>>PHP>>正文


PHP RequestCheckUtil::checkEmpty方法代码示例

本文整理汇总了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");
 }
开发者ID:sayi21cn,项目名称:66pu,代码行数:4,代码来源:GetItemsByTheme.php

示例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");
 }
开发者ID:sayi21cn,项目名称:66pu,代码行数:34,代码来源:GetItemsBySearch.php


注:本文中的RequestCheckUtil::checkEmpty方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。