在 Yii 中,如何在执行之前显示呈现的查询。
$sql="SELECT * from users WHERE user_id = :user_id";
$command=Yii::app()->db->createCommand($sql);
// replace the placeholder ":user_id" with the actual username value
$command->bindParam(":user_id",$user_id,PDO::PARAM_INT);
echo "<br/>".$command->getText();
我想打印绑定参数中包含的查询,例如 user_id = 1 然后
SELECT * from users WHERE user_id = 1