PHP mysqli_error() 函数
PHP mysqli_error() 函数
实例
返回最近调用函数的最后一个错误描述:
<?php
// 假定数据库用户名:root,密码:123456,数据库:RUNOOB
$con=mysqli_connect("localhost","root","123456","RUNOOB");
if (mysqli_connect_errno($con))
{
echo "连接 MySQL 失败: " . mysqli_connect_error();
}
// 执行查询,检查错误
if (!mysqli_query($con,"INSERT INTO websites (name) VALUES ('菜鸟教程')"))
{
echo("错误描述: " . mysqli_error($con));
}
mysqli_close($con);
?>
// 假定数据库用户名:root,密码:123456,数据库:RUNOOB
$con=mysqli_connect("localhost","root","123456","RUNOOB");
if (mysqli_connect_errno($con))
{
echo "连接 MySQL 失败: " . mysqli_connect_error();
}
// 执行查询,检查错误
if (!mysqli_query($con,"INSERT INTO websites (name) VALUES ('菜鸟教程')"))
{
echo("错误描述: " . mysqli_error($con));
}
mysqli_close($con);
?>
定义和用法
mysqli_error() 函数返回最近调用函数的最后一个错误描述。
语法
mysqli_error(connection);
参数 | 描述 |
---|---|
connection | 必需。规定要使用的 MySQL 连接。 |
技术细节
返回值: | 返回一个带有错误描述的字符串。如果没有错误发生则返回 ""。 |
---|---|
PHP 版本: | 5+ |
PHP MySQLi 参考手册
相关文章
- PHP 简介
- PHP 语法
- PHP 变量
- PHP 数据类型
- PHP 类型比较
- PHP 数组
- PHP 数组排序
- PHP 过滤器
- PHP array_combine() 函数
- PHP array_key_last() 函数
- PHP array_product() 函数
- PHP array_rand() 函数
- PHP array_replace_recursive() 函数
- PHP array_shift() 函数
- PHP array_walk() 函数
- PHP current() 函数
- PHP prev() 函数
- PHP shuffle() 函数
- PHP uasort() 函数
- PHP 5 Calendar 函数