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

pdo连接数据类与中文乱码解决方法

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-11 13:16:53 浏览: 评论:0 

1.pdo简介

pdo(php data object) 是php 5 中加入的东西,是php 5新加入的一个重大功能,因为在php 5以前的php4/php3都是一堆的数据库教程扩展来跟各个数据库的连接和处理,什么 php_mysql教程.dll、php_pgsql.dll、php_mssql.dll、php_sqlite.dll等等。 

php6中也将默认使用pdo的方式连接,mysql扩展将被作为辅助 

2.pdo配置 

php.ini中,去掉"extension=php_pdo.dll"前面的";"号,若要连接数据库,还需要去掉与pdo相关的数据库扩展前面的";"号,然后重启apache服务器即可.

  1. extension=php_pdo.dll  
  2. extension=php_pdo_mysql.dll  
  3. extension=php_pdo_pgsql.dll  
  4. extension=php_pdo_sqlite.dll  
  5. extension=php_pdo_mssql.dll  
  6. extension=php_pdo_odbc.dll  
  7. extension=php_pdo_firebird.dll  
  8. ...... 

3.pdo连接mysql数据库

new pdo("mysql:host=localhost;dbname=db_demo","root",""); 

默认不是长连接,若要使用数据库长连接,需要在最后加如下参数:

new pdo("mysql:host=localhost;dbname=db_demo","root","","array(pdo::attr_persistent => true) "); 

4.pdo常用方法及其应用

pdo::query() 主要是用于有记录结果返回的操作,特别是select操作 

pdo::exec() 主要是针对没有结果集合返回的操作,如insert、update等操作 

pdo::lastinsertid() 返回上次插入操作,主键列类型是自增的最后的自增id 

pdostatement::fetch() 是用来获取一条记录 

pdostatement::fetchall() 是获取所有记录集到一个中 

5.pdo操作mysql数据库实例,代码如下:

  1. <?php  
  2. $pdo = new pdo("mysql:host=localhost;dbname=db_demo","root","");  
  3. if($pdo -> exec("insert into db_demo(name,content) values('title','content')")){  
  4. echo "插入成功!";  
  5. echo $pdo -> lastinsertid();  
  6. }  
  7. ?> 
  8.  
  9. <?php  
  10. $pdo = new pdo("mysql:host=localhost;dbname=db_demo","root","");  
  11. $rs = $pdo -> query("select * from test");  
  12. while($row = $rs -> fetch()){  
  13. print_r($row);  
  14. }  
  15. ?> 

网上最常出现的解决中文乱码显示的代码是:

第一种:pdo::__construct($dsn, $user, $pass, array

(pdo::mysql_attr_init_command => "set names'utf8';")); 

我试过用第一种方法,可结果是,name字段只显示一个‘c'字符,之后的本该显示中文的地方却是空白,我是只要解决的:直接将utf8替换成了gbk,就可以了,即:

pdo::__construct($dsn, $user, $pass, array(pdo::mysql_attr_init_command => "set names'gbk';"));

第二种:pdo::__construct($dsn, $user, $pass);

pdo::exec("set names 'utf8';"); 

第二种我也在我的环境里测试过,碰到这种情况,把utf8替换成gbk,就能显示了,另外,这里的pdo::在使用的时候用$pdo->代替,当然,这个是个变量,变量名称可以自己定义.

第三种:$pdo->query('set names utf8;'); 

至于第三种呢,看了上面两种,应该也知道要吧utf8替换成gbk,也能正确显示了.

这几种我都测试过了,都行,另外,我在这里还介绍一种解决中文乱码的一种方法,不过大同小异,基本和第三种没什么区别,不通的是,这种方法,没用query而是用exec,代码如下:

  1. $pdo->exec("set character set gbk");  
  2. <?php  
  3. /* 
  4.  
  5. 常用数据库操作,如:增删改查,获取单条记录、多条记录,返回最新一条插入记录id,返回操作记录行数等  
  6. */  
  7. /*  
  8. 参数说明  
  9. int $debug 是否开启调试,开启则输出sql语句  
  10. int $getcount 是否记数,返回值为行数  
  11. int $getrow 是否返回值单条记录  
  12. string $table 数据库表  
  13. string $fields 需要查询的数据库字段,允许为空,默认为查找全部  
  14. string $sqlwhere 查询条件,允许为空  
  15. string $orderby 排序,允许为空,默认为id倒序  
  16. */ 
  17.  
  18. function hrselect($debug, $getcount, $getrow, $table, $fields="*", $sqlwhere="", $orderby="id desc"){  
  19. global $pdo;  
  20. if($debug){  
  21. if($getcount){  
  22. echo "select count(*) from $table where 1=1 $sqlwhere order by $orderby";  
  23. }else{  
  24. echo "select $fields from $table where 1=1 $sqlwhere order by $orderby";  
  25. }  
  26. exit;  
  27. }else{  
  28. if($getcount){  
  29. $rs = $pdo->query("select count(*) from $table where 1=1 $sqlwhere order by $orderby");  
  30. return $rs->fetchcolumn();  
  31. }elseif($getrow){  
  32. $rs = $pdo->query("select $fields from $table where 1=1 $sqlwhere order by $orderby");  
  33. return $rs->fetch();  
  34. }else{  
  35. $rs = $pdo->query("select $fields from $table where 1=1 $sqlwhere order by $orderby");  
  36. return $rs->fetchall();  
  37. }  
  38. }  
  39. }  
  40. /*  
  41. 参数说明  
  42. int $debug 是否开启调试,开启则输出sql语句  
  43. int $execrow 是否开启返回执行条目数  
  44. int $lastinsertid 是否开启返回最后一条插入记录id  
  45. string $table 数据库表  
  46. string $fields 需要插入数据库的字段  
  47. string $values 需要插入数据库的信息,必须与$fields一一对应  
  48. */  
  49. function hrinsert($debug, $execrow, $lastinsertid, $table, $fields, $values){  
  50. global $pdo;  
  51. if($debug){  
  52. echo "insert into $table ($fields) values ($values)";  
  53. exit;  
  54. }elseif($execrow){  
  55. return $pdo->exec("insert into $table ($fields) values ($values)");  
  56. }elseif($lastinsertid){  
  57. return $pdo->lastinsertid("insert into $table ($fields) values ($values)");  
  58. }else{  
  59. $pdo->query("insert into $table ($fields) values ($values)");  
  60. }  
  61. }  
  62. /*  
  63. 参数说明  
  64. int $debug 是否开启调试,开启则输出sql语句  
  65. int $execrow 是否开启执行并返回条目数  
  66. string $table 数据库表  
  67. string $set 需要更新的字段及内容,格式:a='abc',b=2,c='2010-10-10 10:10:10'  
  68. string $sqlwhere 修改条件,允许为空  
  69. */  
  70. function hrupdate($debug, $execrow, $table, $set, $sqlwhere=""){  
  71. global $pdo;  
  72. if($debug){  
  73. echo "update $table set $set where 1=1 $sqlwhere";  
  74. exit;  
  75. }elseif($execrow){  
  76. return $pdo->exec("update $table set $set where 1=1 $sqlwhere");  
  77. }else{  
  78. $pdo->query("update $table set $set where 1=1 $sqlwhere");  
  79. }  
  80. }  
  81. /*  
  82. 参数说明  
  83. int $debug 是否开启调试,开启则输出sql语句  
  84. int $execrow 是否开启返回执行条目数  
  85. string $table 数据库表  
  86. string $sqlwhere 删除条件,允许为空  
  87. */  
  88. function hrdelete($debug, $execrow, $table, $sqlwhere=""){  
  89. global $pdo;  
  90. if($debug){  
  91. echo "delete from $table where 1=1 $sqlwhere";  
  92. exit; //开源代码phpfensi.com 
  93. }elseif($execrow){  
  94. return $pdo->exec("delete from $table where 1=1 $sqlwhere");  
  95. }else{  
  96. $pdo->query("delete from $table where 1=1 $sqlwhere");  
  97. }  
  98. }  
  99. ?>

Tags: pdo连接数据类 pdo中文乱码

分享到: