PHP mysqli_stmt_init() 函数
初始化声明并返回 mysqli_stmt_prepare() 使用的对象:
<"localhost","root","123456","codingdict"); if (mysqli_connect_errno($con)) { echo "连接 MySQL 失败: " . mysqli_connect_error(); } // 修改数据库连接字符集为 utf8 mysqli_set_charset($con,"utf8"); $country="CN"; // 创建预处理语句 $stmt=mysqli_stmt_init($con); if (mysqli_stmt_prepare($stmt,"SELECT name FROM websites WHERE country=")) { // 绑定参数 mysqli_stmt_bind_param($stmt,"s",$country); // 执行查询 mysqli_stmt_execute($stmt); // 绑定结果变量 mysqli_stmt_bind_result($stmt,$name); // 获取值 mysqli_stmt_fetch($stmt); printf("%s 国家的网站为:%s",$country,$name); // 关闭预处理语句 mysqli_stmt_close($stmt); } mysqli_close($con); "text-align: center">总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
桃源资源网 Design By www.nqtax.com
暂无“PHP的mysqli_stmt_init()函数讲解”评论...