最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

PHP的mysqli_stmt_init()函数讲解

来源:动视网 责编:小采 时间:2020-11-27 14:43:29
文档

PHP的mysqli_stmt_init()函数讲解

PHP的mysqli_stmt_init()函数讲解:PHP mysqli_stmt_init() 函数 初始化声明并返回 mysqli_stmt_prepare() 使用的对象: <?php // 假定数据库用户名:root,密码:123456,数据库:codingdict $con=mysqli_connect(localhost,root,123
推荐度:
导读PHP的mysqli_stmt_init()函数讲解:PHP mysqli_stmt_init() 函数 初始化声明并返回 mysqli_stmt_prepare() 使用的对象: <?php // 假定数据库用户名:root,密码:123456,数据库:codingdict $con=mysqli_connect(localhost,root,123


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();
}
// 修改数据库连接字符集为 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);
?>

定义和用法

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

总结

文档

PHP的mysqli_stmt_init()函数讲解

PHP的mysqli_stmt_init()函数讲解:PHP mysqli_stmt_init() 函数 初始化声明并返回 mysqli_stmt_prepare() 使用的对象: <?php // 假定数据库用户名:root,密码:123456,数据库:codingdict $con=mysqli_connect(localhost,root,123
推荐度:
标签: php 脚本 ph
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top