博客列表 >链式的数据库

链式的数据库

坏人也温柔de陈词滥调
坏人也温柔de陈词滥调原创
2019年08月07日 14:40:221464浏览

demo.php

实例

<?php
//使用静态方法的重载
require 'deta.php';
class Db
{
    //用于数据库连接
    protected static $pdo = null;
    // 数据库连接方法
    public static function connection()
    {
        //连接数据的参数
        self::$pdo = new PDO('mysql:host=127.0.0.1;dbname=php','root','root');
    }
    //查询类操作入口
    public static function __callStatic($name, $arguments)
    {
        //创建pdo对象,并连接数据库
        self::connection();
        //实例化查询类,将连接对象作为参数
        $query = new Query(self::$pdo);
        //执行查询类Query中的对象方法
        return call_user_func_array([$query,$name],[$arguments[0]]);
    }
}
//客户端的链式调用
//以Db类做入整数数据库操作的入口,SQL语句的各个部分用对象方法提供
$cats = Db::table('category')
    ->field('cate_id, name ,alias')
    ->where('cate_id >= 2')
    ->limit('2')
    ->select();
//foreach循环查看获取的数据库数据
foreach ($cats as $cat) {
    print_r($cat);
    echo '<br>';
}

运行实例 »

点击 "运行实例" 按钮查看在线实例

deta.php

实例

<?php
//数据库查询类

class deta
{
    //连接对象
    public $pdo = null;
    //字段列表
    public $field = '';
    //数据表名
    public $table = '';
    //查询条件
    public $where = '';
    //显示数量
    public $limit = '';
    //修改值
    public $value = '';

    //构造方法,初始化连接对象
    public function __construct(PDO $pdo)
    {
        $this->pdo = $pdo;
    }
    public  function table($tableName)
    {
        $this->table = $tableName;
        return $this;
    }

    //设置查询字段
    public function field($fields)
    {
        $this->field = $fields;
        return $this;
    }

    //设置查询条件
    public function where($where)
    {
        $this->where = $where;
        return $this;
    }

    //设置显示数量
    public function limit($limit)
    {
        $this->limit = $limit;
        return $this;
    }

    //设置值
    public function value($value)
    {
        $this->limit = $value;
        return $this;
    }

    //创建SQL查询语句对象,并返回查询结果
    public function select()
    {
        //查询条件设置
        $fields = empty($this->field) ? '*' : $this->field;
        $where = empty($this->where) ? '' : ' WHERE ' .$this->where;
        $limit = empty($this->limit) ? '' : ' LIMIT ' . $this->limit;

        //SQL查询语句
        $sql = 'SELECT '.$fields.' FROM '.$this->table . $where . $limit;

        //预处理查询
        $stmt = $this->pdo->prepare($sql);
        $stmt->execute();
        return $stmt->fetchAll(PDO::FETCH_ASSOC);
    }
}

运行实例 »

点击 "运行实例" 按钮查看在线实例


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议