php中如何当sql语句出错时,自动跳转到一个指定页面?

WBOY
Release: 2016-06-20 12:42:54
Original
1346 people have browsed it

目前用的是  die(“sql语句出错”);

但不想让用户看到些,应该如何处理?


回复讨论(解决方案)

header("location:目标地址");exit();
Copy after login
Copy after login

header("location:目标地址");exit();
Copy after login
Copy after login


跳转语句我知道,但是如何执行到这一句?

比如,当前语句 是 mysql_query($sql)or die(“sql出错”);

我想你学了面向对象的话就不会问这个问题。

所有的sql都在那么几个方法类执行,try,catch捕捉错误。跳转处理

$result = mysql_query($sql);if(!$result){   header("location:目标地址");   exit();}
Copy after login

楼主要的是 出错时 不想让用户看到

那么 自动跳转到一个指定页面 和就在本页输出,并没有区别
与有关错误信息一样会展现在用户面前

楼主要的是 出错时 不想让用户看到

那么 自动跳转到一个指定页面 和就在本页输出,并没有区别
与有关错误信息一样会展现在用户面前



你理解的非常正确

我理解的非常正确,那么就是你吧需求描述错了

我理解的非常正确,那么就是你吧需求描述错了


你的解决办法是哪个

记录错误到日志
继续执行程序,但需要判断数据的有效性

不过仅就你示例的情况看,那样做是没有必要的
sql 指令出错仅会在调试阶段发生,正式运行时是不会发生 sql 语法错误的
除非你允许用户提交 sql 指令,但也应告诉提交者 sql 指令是错的

感谢两位版主的回复,各自收分

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!