一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

PHP的mysqli_stmt_init()函数讲解

时间:2026-05-28 19:00:01 编辑:袖梨 来源:一聚教程网

今天小编就为大家分享一篇关于PHP的mysqli_stmt_init()函数讲解,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧

PHP mysqli_stmt_init() 函数

初始化声明并返回 mysqli_stmt_prepare() 使用的对象:

<?php// 假定数据库用户名:root,密码:123456,数据库:codingdict$con=mysqli_connect("localhost","root","123456","codingdict");if (mysqli_connect_errno($con)){ echo "连接 MySQL 失败: " . mysqli_connect_error();}// 修改数据库连接字符集为 utf8mysqli_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);?>

定义和用法

mysqli_stmt_init() 函数初始化声明并返回 mysqli_stmt_prepare() 使用的对象。

总结

热门栏目