ThinkPHP学习札记(十)在Model中完成自动验证前台的表单数据
程序员文章站
2022-05-01 10:26:13
...
ThinkPHP学习笔记(十)在Model中完成自动验证前台的表单数据
AutoAction.class.php
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()); } } } ?>
相关文章
相关视频