zoukankan      html  css  js  c++  java
  • thinkphp 3.2 模型的使用示例

    原来以为thinkPHP的 model 就和PHPCMS一样  就起到一个连接数据库的作用,今天看了视频,才发现这个也是 mvc中的m

    使用方法可以使用 D() 方法

    下面是 UserController

    <?php
    namespace HomeController;
    use ThinkController;
    class UserController extends Controller {
    	/**-- 用户中心 --**/
        public function index(){
            $this->display();
        }
    	/**-- 登陆页面 --**/
    	public function login(){
    		$this->display();
        }
    	/**-- 执行登陆操作 --**/
    	public function dologin(){
    		$data = I('post.');
    		$result = D('User')->login($data);
    		var_dump($result);
    	}
    	/**-- 验证验证码 --
    	private function check_verify($code, $id = ''){    
    		$verify = new ThinkVerify();    
    		return $verify->check($code, $id);
    	}
    	**/
    }
    

     UserModel

    <?php
    namespace HomeModel;
    use ThinkModel;
    class UserModel extends Model {
    	/**-- 登陆 --**/
    	public function login($data){
    		if(!($this->check_verify($data['code']))){
    			return '验证码错误';
    		}
    		if($data['name'] == '' || $data['password'] == ''){
    			return '用户名或密码不能为空!';
    		}
    		$user = M('User');
    		$data['password'] = md5($data['password']);
    		$result = $user->where(array('name'=>$data['name'],'password'=>$data['password']))->find();
    		if($result){
    			return '欢迎您 '.$result['name'];
    		}else{
    			return '没有该用户';
    		}
    	}
    	/**-- 验证验证码 --**/
    	private function check_verify($code, $id = ''){    
    		$verify = new ThinkVerify();    
    		return $verify->check($code, $id);
    	}
    }
    ?>
    

    在本模型中  $this 就等于 M("本模型");

    $this的效率要高于M();

    $this的出错率比较低;

  • 相关阅读:
    python做一个数独小游戏
    通过进程快照枚举进程的信息
    单向链表 malloc与free
    指针常量&指向常量的指针
    变量在不同区域的默认初始值
    数组指针和指针数组
    堆的首地址和堆的指针
    创建对象时,系统会自动调用构造函数和析构函数
    对象所占内存的大小与首地址
    范磊 C++ 第8章 指针
  • 原文地址:https://www.cnblogs.com/mr-amazing/p/4024812.html
Copyright © 2011-2022 走看看