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


PHP BaseController::validate方法代码示例

本文整理汇总了PHP中BaseController::validate方法的典型用法代码示例。如果您正苦于以下问题:PHP BaseController::validate方法的具体用法?PHP BaseController::validate怎么用?PHP BaseController::validate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在BaseController的用法示例。


在下文中一共展示了BaseController::validate方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: validate

 public function validate($retType)
 {
     parent::validate($retType);
     copyArray($_POST, $v, '*');
     if (trim($v['username']) == '') {
         $rets[] = array('msg' => 'Please enter your username!', 'field' => 'username');
     }
     if (filter_var($v['email'], FILTER_VALIDATE_EMAIL) === FALSE) {
         $rets[] = array('msg' => 'Invalid email address!', 'field' => 'email');
     }
     if ($v['password'] == '') {
         $rets[] = array('msg' => 'Please enter your password!', 'field' => 'password');
     }
     if (strlen($v['password']) < 3) {
         $rets[] = array('msg' => 'Password must have at least 3 chars!', 'field' => 'password');
     }
     if ($v['password'] != $v['cpassword']) {
         $rets[] = array('msg' => 'Passwords mismatched!', 'field' => 'cpassword');
     }
     if (isset($rets)) {
         if (isset($retType) && $retType == RT_JSON) {
             return outputJson($rets);
         } else {
             return $rets;
         }
     }
 }
开发者ID:renduples,项目名称:alibtob,代码行数:27,代码来源:Register.php

示例2: validate

 public function validate($retType)
 {
     parent::validate($retType);
     copyArray($_POST, $fv, 'username');
     if (validateUsername($fv['username']) == false) {
         $rets[] = array('msg' => '<br/>Invalid username!', 'field' => 'username');
     }
     if (isset($rets)) {
         if (isset($retType) && $retType == RT_JSON) {
             return outputJson($rets);
         } else {
             return $rets;
         }
     }
 }
开发者ID:renduples,项目名称:alibtob,代码行数:15,代码来源:SignIn.php

示例3: validate

	public function validate($retType)
	{
		copyArray($_POST, $v, '*');
		$rets = parent::validate($retType, $v);

		if (filter_var($v['email'], FILTER_VALIDATE_EMAIL) === FALSE) {
    		$rets[] = array('msg' => 'Invalid email address!', 'field' => 'email', 'focus' => 'email');
        }
		if (strlen($v['password']) < 3) {
			$rets[] = array('msg' => 'Password must have at least 3 chars!', 'field' => 'password', 'focus' => 'password');
		}
		if ($v['password'] != $v['cpassword']) {
			$rets[] = array('msg' => 'Passwords mismatched!', 'field' => 'cpassword', 'focus' => 'cpassword');
		}

		if (isset($retType) && $retType == RT_JSON && isset($rets)) return outputJson($rets);
        return $rets;
	}
开发者ID:ngduc,项目名称:Thin-PHP-Framework,代码行数:18,代码来源:Register.php

示例4: validate

 public function validate($retType)
 {
     parent::validate($retType);
     copyArray($_POST, $fv, 'name', 'email', 'content');
     if (trim($fv['name']) == '') {
         $rets[] = array('msg' => 'Please enter your name!', 'field' => 'name');
     }
     if (filter_var($fv['email'], FILTER_VALIDATE_EMAIL) === FALSE) {
         $rets[] = array('msg' => 'Invalid email!', 'field' => 'email');
     }
     if (trim($fv['content']) == '') {
         $rets[] = array('msg' => 'Please enter content!', 'field' => 'content');
     }
     if (isset($rets)) {
         if (isset($retType) && $retType == RT_JSON) {
             return outputJson($rets);
         } else {
             return $rets;
         }
     }
 }
开发者ID:renduples,项目名称:alibtob,代码行数:21,代码来源:BlogComment.php

示例5: validate

	public function validate($retType)
	{
		parent::validate($retType);

		copyArray($_POST, $fv, 'name', 'email', 'msg');

		if (trim($fv['name']) == '') {
			$rets[] = array('msg' => 'Please enter your name!', 'field' => 'name');
		}
		if (filter_var($fv['email'], FILTER_VALIDATE_EMAIL) === FALSE) {
    		$rets[] = array('msg' => 'Invalid email!', 'field' => 'email');
        }
        if (trim($fv['msg']) == '') {
			$rets[] = array('msg' => 'Please enter your message!', 'field' => 'msg');
		}
        if (ReCaptcha::checkAnswer() == false && isset($retType) && $retType == RT_JSON) {
        	$rets[] = array('msg' => 'The reCAPTCHA wasn\'t entered correctly!', 'field' => 'recaptcha');
        }

		if (isset($retType) && $retType == RT_JSON && isset($rets)) return outputJson($rets);
        return $rets;
	}
开发者ID:ngduc,项目名称:Thin-PHP-Framework,代码行数:22,代码来源:ContactUs.php


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