摘要:
注册会使用验证码,下面是验证码的使用方法:Yii中如何使用验证码:在Model层的文件中插入 public $verifyCode; 在rules()中插入 array('verifyCode', 'captcha', 'allowEmpty'=>!CCaptcha::checkRequirements()), 在attributeLabels()中插入 'verifyCode' =>'验证码';在Controller层的文件中插入 public function actions() { return 阅读全文
摘要:
框架无非就是mvc,只是调用的父类操作比较繁琐。登录:C:TestController.php/actionLogin方法 public function actionLogin() { $model=new TestLogin; if(isset($_POST['ajax']) && $_POST['ajax']==='login-form') { echo CActiveForm::validate($model); Yii::app()->end(); } if(isset($_POST['TestLogin& 阅读全文
摘要:
匹配ip地址:((2[0-4]\d|25[0-5]|[01]?\d\d?)\.){3}2[0-4]\d|25[0-5]|[01]?\d\d?后向引用:(\w+)\s?\\1注意:数字1前面有两个\零宽断言:1:(?exp) 如:\w+(?=ing)查找字符串i'm singing 匹配sing2:(?<=exp) 如:(?<=re)\w+查找字符串i'm reading 匹配ading3:综合运用如:/(?<=<((\w)+)>).*(?=<\/\\1>)/ 匹配html标签如<b>.*</b>负向零宽断言:1: 阅读全文