NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
>[info]验证 eg: ```` <?php /** * Created by PhpStorm. * User: 邓士鹏 * Date: 2018/9/2 * Time: 15:42 */ namespace app\api\validate; class IDMustBePostiveint extends BaseValidate { protected $rule = [ 'id' => 'require|checkIDs' ]; protected $message = [ 'id' => 'id必须为整形' ]; protected function checkIDs($value){ $result = $this->isPostitiveinteger($value); if(!$result){ return false; } return true; } } ```` >[success]controller: >//增加验证规则 (new IDMustBePostiveint())->goCheck();