In PHP, you can use the mysqli_error() function to return the last error description of the recently called function. The syntax is "mysqli_error(connection);". The parameter connection specifies the MySQL connection to be used.
The operating environment of this article: Windows 7 system, PHP version 7.1, DELL G3 computer
How to obtain the php mysqli error message?
mysqli_error() function returns the last error description of the most recently called function.
Syntax
mysqli_error(connection);
Parameters
connection required. Specifies the MySQL connection to use.
Return value: Returns a string with an error description. Returns "" if no error occurred.
Example
Return the last error description of the recently called function:
<?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); ?>
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of How to obtain php mysqli error information. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Atom editor mac version download
The most popular open source editor

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool
