当前位置:首页 > PHP教程 > php应用 > 列表

php怎么连接mysql5.0?

发布:smiling 来源: PHP粉丝网  添加日期:2020-05-02 21:26:01 浏览: 评论:0 

PHP与MySQL的连接有三种API接口,分别是:PHP的MySQL扩展 、PHP的mysqli扩展 、PHP数据对象(PDO) ,下面针对以上三种连接方式做下总结,以备在不同场景下选出最优方案。

PHP的MySQL扩展是设计开发允许php应用与MySQL数据库交互的早期扩展。MySQL扩展提供了一个面向过程的接口,并且是针对MySQL4.1.3或者更早版本设计的。因此这个扩展虽然可以与MySQL4.1.3或更新的数据库服务端进行交互,但并不支持后期MySQL服务端提供的一些特性。由于太古老,又不安全,所以已被后来的mysqli完全取代;

PHP的mysqli扩展,我们有时称之为MySQL增强扩展,可以用于使用 MySQL4.1.3或更新版本中新的高级特性。其特点为:面向对象接口 、prepared语句支持、多语句执行支持、事务支持 、增强的调试能力、嵌入式服务支持 、预处理方式完全解决了sql注入的问题。不过其也有缺点,就是只支持mysql数据库。如果你要是不操作其他的数据库,这无疑是最好的选择。

PDO是PHP Data Objects的缩写,是PHP应用中的一个数据库抽象层规范。PDO提供了一个统一的API接口可以使得你的PHP应用不去关心具体要连接的数据库服务器系统类型,也就是说,如果你使用PDO的API,可以在任何需要的时候无缝切换数据库服务器,比如从Oracle 到MySQL,仅仅需要修改很少的PHP代码。其功能类似于JDBC、ODBC、DBI之类接口。同样,其也解决了sql注入问题,有很好的安全性。不过他也有缺点,某些多语句执行查询不支持(不过该情况很少)。

1.PHP与Mysql扩展(本扩展自 PHP 5.5.0 起已废弃,并在将来会被移除),PHP原生的方式去连接数据库,是面向过程的

  1. <?php 
  2.  
  3. $mysql_conf = array
  4.  
  5.     'host'    => '127.0.0.1:3306',  
  6.  
  7.     'db'      => 'test',  
  8.  
  9.     'db_user' => 'root',  
  10.  
  11.     'db_pwd'  => 'root',  
  12.  
  13.     ); 
  14.  
  15. $mysql_conn = @mysql_connect($mysql_conf['host'], $mysql_conf['db_user'], $mysql_conf['db_pwd']); 
  16.  
  17. if (!$mysql_conn) { 
  18.  
  19.     die("could not connect to the database:\n" . mysql_error());//诊断连接错误 
  20.  
  21.  
  22. mysql_query("set names 'utf8'");//编码转化 
  23.  
  24. $select_db = mysql_select_db($mysql_conf['db']); 
  25.  
  26. if (!$select_db) { 
  27.  
  28.     die("could not connect to the db:\n" .  mysql_error()); 
  29.  
  30.  
  31. $sql = "select * from user;"
  32.  
  33. $res = mysql_query($sql); 
  34.  
  35. if (!$res) { 
  36.  
  37.     die("could get the res:\n" . mysql_error()); 
  38.  
  39.  
  40. while ($row = mysql_fetch_assoc($res)) { 
  41. //phpfensi.com 
  42.     print_r($row); 
  43.  
  44.  
  45. mysql_close($mysql_conn); 
  46.  
  47. ?> 

2.PHP与Mysqli扩展,面向过程、对象

  1. <?php 
  2.  
  3. $mysql_conf = array
  4.  
  5.     'host'    => '127.0.0.1:3306',  
  6.  
  7.     'db'      => 'test',  
  8.  
  9.     'db_user' => 'root',  
  10.  
  11.     'db_pwd'  => 'joshua317',  
  12.  
  13.     ); 
  14.  
  15. $mysqli = @new mysqli($mysql_conf['host'], $mysql_conf['db_user'], $mysql_conf['db_pwd']); 
  16.  
  17. if ($mysqli->connect_errno) { 
  18.  
  19.     die("could not connect to the database:\n" . $mysqli->connect_error);//诊断连接错误 
  20.  
  21.  
  22. $mysqli->query("set names 'utf8';");//编码转化 
  23.  
  24. $select_db = $mysqli->select_db($mysql_conf['db']); 
  25.  
  26. if (!$select_db) { 
  27.  
  28.     die("could not connect to the db:\n" .  $mysqli->error); 
  29.  
  30. }$sql = "select uid from user where name = 'joshua';"
  31.  
  32. $res = $mysqli->query($sql); 
  33.  
  34. if (!$res) { 
  35.  
  36.     die("sql error:\n" . $mysqli->error); 
  37.  
  38.  
  39.  while ($row = $res->fetch_assoc()) { 
  40.  
  41.         var_dump($row); 
  42.  
  43.     } 
  44.  
  45. $res->free(); 
  46.  
  47. $mysqli->close(); 
  48.  
  49. ?> 

2.PHP与PDO扩展,面向过程、对象

  1. <?php 
  2.  
  3. $mysql_conf = array
  4.  
  5.     'host'    => '127.0.0.1:3306',  
  6.  
  7.     'db'      => 'test',  
  8.  
  9.     'db_user' => 'root',  
  10.  
  11.     'db_pwd'  => 'joshua317',  
  12.  
  13.     ); 
  14.  
  15. $pdo = new PDO("mysql:host=" . $mysql_conf['host'] . ";dbname=" . $mysql_conf['db'], $mysql_conf['db_user'], $mysql_conf['db_pwd']);//创建一个pdo对象 
  16.  
  17. $pdo->exec("set names 'utf8'"); 
  18.  
  19. $sql = "select * from user where name = ?"
  20.  
  21. $stmt = $pdo->prepare($sql); 
  22.  
  23. $stmt->bindValue(1, 'joshua', PDO::PARAM_STR); 
  24.  
  25. $rs = $stmt->execute(); 
  26.  
  27. if ($rs) { 
  28.  
  29.     // PDO::FETCH_ASSOC 关联数组形式 
  30.  
  31.     // PDO::FETCH_NUM 数字索引数组形式 
  32.  
  33.     while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) { 
  34.  
  35.         var_dump($row); 
  36.  
  37.     } 
  38.  
  39.  
  40. $pdo = null;//关闭连接 
  41.  
  42. ?> 

Tags: php怎么连接mysql5 0

分享到: