原理
子类继承中
将$dsn,$user,$password,$table='staff' 传入构造函数 __construct()中
其中
$dsn,$user,$password 在构造方法中实现数据库连接。
$table='staff' 赋值 $this->table=$table; 用于后续增删改查
以插叙数据为例
1、根据传入数据 拼接处sql语句
$sql = SELECT * FROM `tablename` WHERE LIMIT 5;
2、执行预处理
$stmt = $this->pdo->prepare($sql);
3、执行查询
$stmt->execute();
4、 将结果返回
return $stmt->fetchAll(\PDO::FETCH_ASSOC);
实例化部分:
$dsn = 'mysql:host=127.0.0.1;dbname=chenqingxuan';
$user = 'root';
$password = 'cqx07231950';
$db = new Db($dsn, $user, $password);
var_dump($db->read('*','staff_id>5',3));