php – 检查codeigniter查询错误,而不是向用户显示它们

前端之家收集整理的这篇文章主要介绍了php – 检查codeigniter查询错误,而不是向用户显示它们前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何检查查询是否出错而不是向用户显示错误(包含不安全的数据库信息).

假设我有这样的情况,我的分页类采用URI段来显示页面
example.com/page/uri_segment.如果有人像这样写这个example.com/page/bla_bla_bla,我会收到一个错误,显示有关我的数据库的信息.

我怎么处理这个?

在application / config / database.PHP中设置
// suppress error output to the screen
$db['default']['db_debug'] = FALSE;

在您的模型或控制器中:

// try the select.
$dbRet = $this->db->select($table,$dataArray);
// select has had some problem.
if( !$dbRet )
{
   $errNo   = $this->db->_error_number()
   $errMess = $this->db->_error_message();
   // Do something with the error message or just show_404();
}
原文链接:https://www.f2er.com/php/138542.html

猜你在找的PHP相关文章