PHP8.1.21版本已发布
vue8.1.21版本已发布
jquery8.1.21版本已发布

ThinkPHP学习札记(十)在Model中完成自动验证前台的表单数据

原创
2016-06-13 12:54:33 570浏览

ThinkPHP学习笔记(十)在Model中完成自动验证前台的表单数据

index.html





UserModel.class.php

15||strlen($data)

AutoAction.class.php

display();
	}
	function add(){
		//经过自定义模型
		$user=D('user');
		if ($user->create()) {
			if ($user->add()){
				$this->success("注册成功");
			}else{
				$this->error($user->getError());
			}
		}else{
			$this->error($user->getError());
		}
	}
}
?>


声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。