Blogger Information
Blog 34
fans 0
comment 0
visits 21830
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
11月21日_PDO操作数据库、PDO常用方法 - 九期线上班
只猫
Original
702 people have browsed it

一、PDO连接数据库mysql

pdo连接对象$pdo = new PDO (数据源,用户名,密码)

  1. <?php
  2. /**************
  3. pdo速度快,支持各种数据库。
  4. 使用方法: new PDO(数据源,用户名,密码)
  5. 数据源信息 数据库类型:host=域名;dbname=数据库名
  6. **************/
  7. //连接
  8. //需要的信息数组
  9. $db = [
  10. 'type'=>'mysql',
  11. 'host'=>'localhost',
  12. 'dbname'=>'php_2019',
  13. 'username'=>'root',
  14. 'password'=>'*******',
  15. ];
  16. $dsn = "{$db['type']}:host={$db['host']};dbname={$db['dbname']}";
  17. //捕获异常
  18. try{
  19. $pdo = new PDO($dsn,$db['username'],$db['password']);
  20. } catch (PDOException $e){
  21. die('Connection Faild:'.$e->getMessage());
  22. } //啥也不显示
  23. //var_dump($pdo); //打印 object(PDO)#1 (0) { } 连接成功

二、添加数据

  1. //1.预处理 PDOStatement
  2. $sql_insert = 'INSERT INTO `test` SET `title`=:title,`content`=:content';
  3. $stmt = $pdo->prepare($sql_insert);
  4. //2.数据绑定 bindParam() 把要写入的数据赋值给变量
  5. $title = '美联邦通信委员会禁止运营商用联邦补贴购买华为设备,华为凌晨回应';
  6. $content = '美国“政客”网站消息,当地时间22日,美国联邦通信委员会通过禁止运营商使用联邦补贴资金购买华为和中兴设备的决定。“政客”网站认为,这是美国联邦政府试图遏制中国通信企业影响的最新努力。';
  7. $stmt->bindParam('title',$title,PDO::PARAM_STR);
  8. $stmt->bindParam('content',$content,PDO::PARAM_STR);
  9. //3.执行 execute()
  10. if($stmt->execute()){
  11. if($stmt->rowCount()>0){
  12. echo '添加成功'. $stmt->rowCount().'条记录,主键id为:'.$pdo->lastInsertId();
  13. }else{
  14. die('<pre>'. print_r($stmt->errorInfo(),true));
  15. }
  16. }

三、更新数据

  1. //更新
  2. $sql_update = 'UPDATE `test` SET `title`=:title,`content`=:content WHERE `id`=:id';
  3. $stmt = $pdo->prepare($sql_update);
  4. $title = '新闻1';
  5. $content = '内容xxxxx';
  6. $id = 1;
  7. $stmt->bindParam('title',$title,PDO::PARAM_STR);
  8. $stmt->bindParam('content',$content,PDO::PARAM_STR);
  9. $stmt->bindParam('id',$id,PDO::PARAM_INT);
  10. if($stmt->execute()){
  11. if($stmt->rowCount()>0){
  12. echo '更新成功'. $stmt->rowCount().'条记录';
  13. }else{
  14. die('<pre>'. print_r($stmt->errorInfo(),true));
  15. }
  16. }

四、删除数据

  1. //删除
  2. $sql_delete = 'DELETE FROM `test` WHERE `id` = :id';
  3. $stmt = $pdo->prepare($sql_delete);
  4. $id = 1;
  5. $stmt->bindParam('id',$id,PDO::PARAM_INT);
  6. if ($stmt->execute()) {
  7. if ($stmt->rowCount() > 0) {
  8. echo '成功删除了' . $stmt->rowCount() . '条记录';
  9. }
  10. } else {
  11. die('<pre>' . print_r($stmt->errorInfo(), true));
  12. }

五、查询数据

  1. // 1.单行查询 fetch()
  2. $sql_select = 'SELECT `name` FROM `movies` WHERE `cate_id`=:cate_id';
  3. $stmt = $pdo->prepare($sql_select);
  4. $cate_id = 1;
  5. $stmt->bindParam('cate_id',$cate_id,PDO::PARAM_INT);
  6. $stmt->execute();
  7. while($movies=$stmt->fetch(PDO::FETCH_ASSOC)){
  8. echo '<pre>'.print_r($movies,true);
  9. }

查询分类id为1的影视名称,结果用while循环出来。fetch获取下一个数据。。

  1. //2.全部查询 fetchAll()返回一个包含结果集中所有行的数组
  2. $sql_select_all = 'SELECT `name` FROM `movies` WHERE `cate_id`=:cate_id';
  3. $stmt = $pdo->prepare($sql_select_all);
  4. $cate_id = 3;
  5. $stmt->bindParam('cate_id',$cate_id,PDO::PARAM_INT);
  6. $stmt->execute();
  7. $movies=$stmt->fetchAll(PDO::FETCH_ASSOC);
  8. foreach ($movies as $value) {
  9. echo '<pre>'.print_r($value,true);
  10. }

  1. // 3.bindColumn()绑定一列到一个 PHP 变量
  2. $sql = 'SELECT * FROM `movies` WHERE `cate_id` = :cate_id';
  3. $stmt = $pdo->prepare($sql);
  4. $cate_id = 3;
  5. $stmt->bindParam('cate_id',$cate_id,PDO::PARAM_INT);
  6. $stmt->execute();
  7. $stmt->bindColumn('name',$name);
  8. $stmt->bindColumn('detail',$detail);
  9. while($stmt->fetch(PDO::FETCH_ASSOC)){
  10. $detail = mb_substr($detail, 0,20,'utf-8');
  11. echo '片名:'.$name.'<br>'.'简介:'.$detail.'...<hr>';
  12. }

  1. //4.fetchColumn()从结果集中的下一行返回单独的一列
  2. $stmt = $pdo->prepare('SELECT `name`,`image` FROM `movies` WHERE `cate_id` = :cate_id');
  3. $cate_id = 3;
  4. $stmt->bindParam('cate_id',$cate_id,PDO::PARAM_INT);
  5. $stmt->execute();
  6. var_dump($stmt->fetch(PDO::FETCH_ASSOC());
  7. $name = $stmt->fetchColumn();
  8. $image = $stmt->fetchColumn(1);
  9. echo '片名:'.$name.'<br>'.'图片名:'.$image;

手写:

总结:
基本上了解了PDO是什么,做什么。知道了PDO连接数据库的方法。但是其中很多类方法和静态变量的使用不熟练。sql模板语句传给prepare()方法,PDOStatement对象是pdo类调用prepare方法后生成的,它也包含有很多方法。对其中的方法具体使用场景不不太清楚,有些方法不理解。返回受影响的记录条数是rowCount()方法,只有增删改操作才有。

Correcting teacher:查无此人查无此人

Correction status:qualified

Teacher's comments:完成的不错,继续加油。 pdo对你来说确实有点难。等我们学了类,就会很好理解了。
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!