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

PHP中如何使用PDO修改数据?

发布:smiling 来源: PHP粉丝网  添加日期:2022-06-19 09:14:56 浏览: 评论:0 

PHP中如何使用PDO修改数据?

首先进行连接数据库,将PDO对象进行实例化;

  1. $dbms = 'mysql'
  2.  
  3. $user = 'root'
  4.  
  5. $pwd = '12345678'
  6.  
  7. $dbName = 'ceshi'
  8.  
  9. $host = 'localhost'
  10.  
  11. $charset = 'utf8'
  12.  
  13. $dsn = "$dbms:host=$host;dbname=$dbName;charset=$charset"
  14.  
  15. try { 
  16.  
  17. $pdo = new PDO( $dsn$user$pwd ); 
  18.  
  19. } catch ( Exception $e ) { 
  20.  
  21. echo $e->getMessage(); 
  22.  

然后编写一个SQL语句模板;接着使用方法“prepare()”方法,将SQL语句进行预处理;

$sql = "select * from dunling_chat where id=? ";

//准备sql模板

$stmt = $pdo->prepare( $sql );

最后进行参数绑定并执行SQL即可。

  1. $id = '1'
  2.  
  3. //绑定参数 
  4.  
  5. $stmt->bindValue( 1, $id ); 
  6.  
  7. //执行预处理语句 
  8.  
  9. $stmt->execute();

Tags: PHP修改数据 PDO修改数据

分享到: