博客列表 >数据库查询构造器

数据库查询构造器

ッ小眼睛っ
ッ小眼睛っ原创
2021年08月17日 21:49:48698浏览

作业问题:

代码:

  1. <?php
  2. class Query
  3. {
  4. //创建类的唯一实例
  5. private static $db;
  6. protected $table;
  7. protected $field;
  8. protected $limit;
  9. private function __construct()
  10. {
  11. }
  12. static function connect($dsn,$username,$pwd)
  13. {
  14. if(is_null(static::$db)){
  15. static::$db = new PDO($dsn,$username,$pwd);
  16. }
  17. //返回query实例
  18. return new static();
  19. }
  20. public function table($table)
  21. {
  22. $this->table = $table;
  23. // echo $this->table;
  24. return $this;
  25. }
  26. public function field($field)
  27. {
  28. $this->field = $field;
  29. // echo $this->field;
  30. return $this;
  31. }
  32. public function limit($limit)
  33. {
  34. $this->limit = $limit;
  35. return $this;
  36. }
  37. public function getSql()
  38. {
  39. return 'SELECT '.$this->field.' FROM '.$this->table.' LIMIT '.$this->limit;
  40. // return sprintf('SELECT %s FROM %s LIMIT %d',$this->field,$this->table,$this->limit);
  41. }
  42. public function select(){
  43. return static::$db->query($this->getSql())->fetchALL(PDO::FETCH_ASSOC);
  44. }
  45. }
  46. class Db
  47. {
  48. static function __callStatic($method, $arygs)
  49. {
  50. $dsn = 'mysql:host=localhost;dbname=test_db';
  51. $username = 'test_db';
  52. $pwd = '123456';
  53. //获取委托实例
  54. $query = Query::connect($dsn,$username,$pwd);
  55. return call_user_func([$query,$method],...$arygs);
  56. }
  57. }
  58. //$res = Db::table('t_user')
  59. // ->field('name')
  60. // ->limit(1)
  61. // ->select();
  62. //
  63. //print_r($res);
  64. print_r(Db::filed('nihao'));
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议