<?php
$pdo=new PDO('mysql:host=127.0.0.1;dbname=php','root','root');
$sql='update `staff` set `position`=:position where `id`=:id';
$stmt=$pdo->prepare($sql);
//$stmt->bindValue('position','文化馆长',PDO::PARAM_STR);
//$stmt->bindValue('id',6,PDO::PARAM_INT);
$stmt->execute(['position'=>'小学校长','id'=>10]);
if ($stmt->rowCount() > 0) {
echo '成功的更新了' . $stmt->rowCount() . '条记录';
}
$pdo=null;