记录一下PHP连接MySQL的三种方式。

先mock一下数据,可以执行一下sql。

  1. /*创建数据库*/
  2. CREATE DATABASE IF NOT EXISTS `test`;
  3.  
  4. /*选择数据库*/
  5. USE `test`;
  6.  
  7. /*创建表*/
  8. CREATE TABLE IF NOT EXISTS `user` (
  9. name varchar(50),
  10. age int
  11. );
  12.  
  13. /*插入测试数据*/
  14. INSERT INTO `user` (name, age) VALUES('harry', 20), ('tony', 23), ('harry', 24);

第一种是使用PHP原生的方式去连接数据库。代码如下:

  1. <?php
  2. $host = 'localhost';
  3. $database = 'test';
  4. $username = 'root';
  5. $password = 'root';
  6. $selectName = 'harry';//要查找的用户名,一般是用户输入的信息
  7. $insertName = 'testname';
  8.  
  9. $connection = mysql_connect($host, $username, $password);//连接到数据库
  10. mysql_query("set names 'utf8'");//编码转化
  11. if (!$connection) {
  12. die("could not connect to the database.\n" . mysql_error());//诊断连接错误
  13. }
  14. $selectedDb = mysql_select_db($database);//选择数据库
  15. if (!$selectedDb) {
  16. die("could not to the database\n" . mysql_error());
  17. }
  18. $selectName = mysql_real_escape_string($selectName);//防止SQL注入
  19. $query = "select * from user where name = '$selectName'";//构建查询语句
  20. $result = mysql_query($query);//执行查询
  21. if (!$result) {
  22. die("could not to the database\n" . mysql_error());
  23. }
  24. while ($row = mysql_fetch_row($result)) {
  25. //取出结果并显示
  26. $name = $row[0];
  27. $age = $row[1];
  28. echo "Name: $name Age: $age \n";
  29. }
  30.  
  31. //添加记录
  32. $insertName = mysql_real_escape_string($insertName);//防止SQL注入
  33. $insertSql = "insert into user(name, age) values('$insertName', 18)";
  34. $result = mysql_query($insertSql);
  35. echo $result . "\n";
  36.  
  37. //更新记录
  38. $updateSql = "update user set age = 19 where name='$insertName'";
  39. $result = mysql_query($updateSql);
  40. echo $result . "\n";
  41.  
  42. //删除记录
  43. $deleteSql = "delete from user where age = 19";
  44. $result = mysql_query($deleteSql);
  45. echo $result . "\n";
  46.  
  47. mysql_close($connection);//关闭连接

其运行结构如下:

  1. Name: harry Age: 20
  2. Name: harry Age: 24
  3. 1
  4. 1
  5. 1

第二种时使用mysqli扩展去链接数据库,代码如下:

  1. <?php
  2. $host = 'localhost';
  3. $database = 'test';
  4. $username = 'root';
  5. $password = 'root';
  6. $selectName = 'harry';//要查找的用户名,一般是用户输入的信息
  7. $insertName = 'testname';
  8.  
  9. // 创建对象并打开连接,最后一个参数是选择的数据库名称
  10. $mysqli = new mysqli($host, $username, $password, $database);
  11.  
  12. // 编码转化为 utf8
  13. if (!$mysqli->set_charset("utf8")) {
  14. printf("Error loading character set utf8: %s\n", $mysqli->error);
  15. } else {
  16. printf("Current character set: %s\n", $mysqli->character_set_name());
  17. }
  18.  
  19. if (mysqli_connect_errno()) {
  20. // 诊断连接错误
  21. die("could not connect to the database.\n" . mysqli_connect_error());
  22. }
  23.  
  24. $selectedDb = $mysqli->select_db($database);//选择数据库
  25. if (!$selectedDb) {
  26. die("could not to the database\n" . mysql_error());
  27. }
  28.  
  29. if ($stmt = $mysqli->prepare("select * from user where name = ?")) {
  30. /* bind parameters for markers */
  31. $stmt->bind_param("s", $selectName);
  32. /* execute query */
  33. $stmt->execute();
  34. /* bind result variables */
  35. $stmt->bind_result($name, $age);
  36.  
  37. /* fetch values */
  38. while ($stmt->fetch()) {
  39. echo "Name: $name Age: $age \n";
  40. }
  41. /* close statement */
  42. $stmt->close();
  43. }
  44.  
  45. //添加记录
  46. if ($insertStmt = $mysqli->prepare("insert into user(name, age) values(?, 18)")) {
  47. /* bind parameters for markers */
  48. $insertStmt->bind_param("s", $insertName);
  49. /* execute query */
  50. $insertStmt->execute();
  51. echo $insertStmt->affected_rows . "\n";
  52. /* close statement */
  53. $insertStmt->close();
  54. }
  55.  
  56. //更新记录
  57. if ($updateStmt = $mysqli->prepare("update user set age = 19 where name=?")) {
  58. /* bind parameters for markers */
  59. $updateStmt->bind_param("s", $insertName);
  60. /* execute query */
  61. $updateStmt->execute();
  62. echo $updateStmt->affected_rows . "\n";
  63. /* close statement */
  64. $updateStmt->close();
  65. }
  66.  
  67. //删除记录
  68. $result = $mysqli->query("delete from user where age = 19");
  69. echo $result . "\n";
  70.  
  71. $mysqli->close();//关闭连接

其结果与第一种相同。

其实mysqli提供了两种方式链接数据库,一种是面向对象的方式,就是如上的代码,另一种是面向过程的方式。可以参考MySQLi扩展功能概述学习。

第三种是使用PDO的方式去连接数据库,代码如下:

  1. <?php
  2. $host = 'localhost';
  3. $database = 'test';
  4. $username = 'root';
  5. $password = 'root';
  6. $selectName = 'harry';//要查找的用户名,一般是用户输入的信息
  7. $insertName = 'testname';
  8.  
  9. $pdo = new PDO("mysql:host=$host;dbname=$database", $username, $password);//创建一个pdo对象
  10. $pdo->exec("set names 'utf8'");
  11. $sql = "select * from user where name = ?";
  12. $stmt = $pdo->prepare($sql);
  13. $rs = $stmt->execute(array($selectName));
  14.  
  15. if ($rs) {
  16. // PDO::FETCH_ASSOC 关联数组形式
  17. // PDO::FETCH_NUM 数字索引数组形式
  18. while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
  19. $name = $row['name'];
  20. $age = $row['age'];
  21. echo "Name: $name Age: $age \n";
  22. }
  23. }
  24.  
  25. $oldAge = 18;
  26. $insert = $pdo->prepare('insert into user(name, age) values(:name, :age)');
  27. $insert->bindParam(':name', $insertName, PDO::PARAM_STR);
  28. $insert->bindParam(':age', $oldAge, PDO::PARAM_INT);
  29. $result = $insert->execute();
  30. echo $result . "\n";
  31.  
  32. $newAge = 19;
  33. $update = $pdo->prepare('update user set age = ? where name = ?');
  34. $update->bindParam(1, $newAge, PDO::PARAM_INT);
  35. $update->bindParam(2, $insertName, PDO::PARAM_STR);
  36. $result = $update->execute();
  37. echo $result . "\n";
  38.  
  39. $delete = $pdo->prepare('delete from user where age = ?');
  40. $result = $delete->execute(array($newAge));
  41. echo $result . "\n";
  42.  
  43. $pdo = null;//关闭连接

其结果与第一种相同。

PHP的学习--连接MySQL的三种方式的更多相关文章

  1. php 链接mysql的三种方式对比

    PHP连接Mysql的三种方式: 1.原生的连接方式  原生的连接方式是面向过程的写法 <?php $host = 'localhost'; $database = 'test'; $usern ...

  2. JDBC 创建连接对象的三种方式 、 properties文件的建立、编辑和信息获取

    创建连接对象的三种方式 //第一种方式 Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/ ...

  3. JDBC 创建连接对象的三种方式 、 properties文件的建立、编辑和信息获取

    创建连接对象的三种方式 //第一种方式 Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/ ...

  4. 使用zabbix监控mysql的三种方式

    使用zabbix监控mysql的三种方式 1.只是安装agent 2.启用模板监控 3.启用自定义脚本的模板监控 zabbix中默认有mysql的监控模板.默认已经在zabbix2.2及以上的版本中. ...

  5. 【转】Spring学习---Bean配置的三种方式(XML、注解、Java类)介绍与对比

    [原文]https://www.toutiao.com/i6594205115605844493/ Spring学习Bean配置的三种方式(XML.注解.Java类)介绍与对比 本文将详细介绍Spri ...

  6. AngularJs学习——实现数据绑定的三种方式

    三种方式: 方式一:<h5>{{msg}}</h5>  此方式在页面刷新的时候会闪现{{}} 方式二:<h5 ng-bind="msg">< ...

  7. Spring学习(二)三种方式的依赖注入

    1.前言 上一篇讲到第一个Spring项目的创建.以及bean的注入.当然.注入的方式一共有三种.本文将展开细说. 1.set注入:本质是通过set方法赋值 1.创建老师类和课程类 1.Course ...

  8. Java连接MySQL数据库三种方法

    好久没有更新博客了!今天利用周目时学习了一下数据库mysql.介绍一下数据库的三种连接方式! 开发工具:Myeclipse MySQL5.6 MySQL连接驱动:mysql-connector-jav ...

  9. C# | VS2019连接MySQL的三种方法以及使用MySQL数据库教程

    本文将介绍3种添加MySQL引用的方法,以及连接MySQL和使用MySQL的教程 前篇:Visual Studio 2019连接MySQL数据库详细教程 \[QAQ \] 第一种方法 下载 Mysql ...

随机推荐

  1. android wifi ANR问题分析总结

    android wifi ANR问题分析总结 1 看看main进程阻塞在那里? 2 调用关系的函数阻塞在那里? 3 最终阻塞函数的阻塞前的log以及状态

  2. hdu 5661 Claris and XOR

    Claris and XOR Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)To ...

  3. Android Studio 无法启动模拟器的一种可能是你装的是Ghost版的系统

    我遇到的问题是,打开模拟器,进度条走到最后,突然出现了emulator error,然后模拟器就无法启动(不好意思当时没有截图).我是在Ghost版 win7系统下运行Android Studio 的 ...

  4. 转帖:Python应用性能分析指南

    原文:A guide to analyzing Python performance While it’s not always the case that every Python program ...

  5. 可在广域网部署运行的QQ高仿版 -- GG叽叽V3.7,优化视频聊天、控制更多相关细节

    在广域网中,由于网络的结构纷繁复杂.而且其实时状况又是千变万化的,所以,要使广域网中的视频聊天达到一个令人满意的效果,存在诸多挑战.这次发布的GG 3.7版本尝试在这一方向上做一些努力,据我自己测试, ...

  6. [.net 面向对象编程基础] (21) 委托

    [.net 面向对象编程基础] (20)  委托 上节在讲到LINQ的匿名方法中说到了委托,不过比较简单,没了解清楚没关系,这节中会详细说明委托. 1. 什么是委托? 学习委托,我想说,学会了就感觉简 ...

  7. [php入门] 2、基础核心语法大纲

    1 前言 最近在学PHP,上节主要总结了PHP开发环境搭建<[php入门] 1.从安装开发环境环境到(庄B)做个炫酷的登陆应用>.本节主要总结PHP的核心基础语法,基本以粗轮廓写,可以算作 ...

  8. GLFW初体验

    GLFW - 很遗憾,没有找到FW的确切含义,Wiki上没有,GLFW主页也没有.猜测F表示for,W表示Window GLFW是干啥用的? 一个轻量级的,开源的,跨平台的library.支持Open ...

  9. 【译】用jQuery 处理XML--写在前面的话

    用jQuery 处理XML--写在前面的话 用jQuery 处理XML-- DOM(文本对象模型)简介 用jQuery 处理XML--浏览器中的XML与JavaScript 用jQuery 处理XML ...

  10. C/C++中动态链接库的创建和调用

    DLL 有助于共享数据和资源.多个应用程序可同时访问内存中单个DLL 副本的内容.DLL 是一个包含可由多个程序同时使用的代码和数据的库.下面为你介绍C/C++中动态链接库的创建和调用. 动态连接库的 ...