文章列表
php程序开发过程中,有时用浏览器浏览时会发现ie7浏览器出现一片空白,查看网页源代码也没有。这样使得错误无从查找。
使用curl -I http://localhost/xxx.php查看程序输出的head, 看到HTTP/1.0 500 Internal Server Error, 原来是服务器给出500错误。
如果打开了php.ini的; Log errors to specified file.;error_log = filename,还可以查看error_log指定的日志,看看错误出在哪里。
一种解决方案:
一行一行的debug(echo一些字符串后exit,这是我使用的笨方法) ...