关于die的有关问题

WBOY
Release: 2016-06-13 13:28:41
Original
1249 people have browsed it

关于die的问题
echo 'fuck';
$db=mysql_connect('localhost', 'bp6am', '123') 
or die('Unable to connect.'); 
?>
这个是我的代码
如果没有echo,那么整个网页就是HTTP Error 500 (Internal Server Error),而且这个die在这里起到什么作用?
为什么有了echo之后这个网页就显示fuck,不显示错误信息?

------解决方案--------------------
php没打开错误显示功能。
php.ini 中
error_reporting = E_ALL & ~E_NOTICE
display_errors = On
------解决方案--------------------
先猜如果没有echo,那么整个网页就是HTTP Error 500 (Internal Server Error),
个人觉得你应该是没有配置好web服务器, 检查下你的apache IIS配置可以解决这样的问题

在说DIE(),是在推出脚本前输出的字符串信息,当然,如果$db=mysql_connect('localhost', 'bp6am', '123')
or die('Unable to connect.');
这里边如果密码不对,就会输出mysql――query函数的错误信息,同时会输出die后的字符串信息。如果对了 没显示。

$db=@mysql_connect('localhost', 'bp6am', '123')
or die('Unable to connect.'); 这样写如果密码错了 就只会输出 Unable to connect。


Related labels:
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!