PHP中具有正确错误检测的Mysql查询

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP中具有正确错误检测的Mysql查询相关的知识,希望对你有一定的参考价值。

Dumps whole query so developer can see where is error. However it's potential security issue, exposing SQL commands to attacker. (Recommended to use only during development, replace message code with some custom error text)
  1. $sql="select something from something_else";
  2. $res_id=mysql_query($sql);
  3. if (!$res_id) {
  4. $message = 'Invalid query: ' . mysql_error() . " ";
  5. $message .= 'Whole query: ' . $sql;
  6. die($message);
  7. }

以上是关于PHP中具有正确错误检测的Mysql查询的主要内容,如果未能解决你的问题,请参考以下文章

如何在 PHP 函数中正确使用 MySQL 查询? [关闭]

表上的 PHP PDO 查询错误具有 json 数据类型(MySQL 5.7.8-rc)

php 执行mysql中查询时内存溢出怎么办

PHP MySQL查询不返回结果[关闭]

PHP MySQL查询在结果中显示错误的日期时间

使用插入查询 CI PHP Mysql Ajax