您现在的位置是:首页 > PHP函数

李清波 2015-09-30 PHP函数 1551 复制当前网址

mysql_error



PHP mysql_error() 函数

定义和用法

mysql_error() 函数返回上一个 MySQL 操作产生的文本错误信息。

本函数返回上一个 MySQL 函数的错误文本,如果没有出错则返回 (空字符串)。


语法

mysql_error(connection)

参数描述
connection可选。规定 SQL 连接标识符。如果未规定,则使用上一个打开的连接。


例子

在本例中,我们将尝试使用错误的用户名和密码来登录一个 MySQL 服务器:

<?php
$con = mysql_connect("localhost","wrong_user","wrong_pwd");
if (!$con)
  {
  die(mysql_error());
  }
mysql_close($con);
?>

输出类似:

Access denied for user wrong_user@localhost
(using password: YES)


文章来源:https://liqingbo.com/blog-751.html

上一篇:mysql_fetch_array

下一篇:mysql_errno

评论