Home  >  Article  >  php教程  >  php程序之die调试法 快速解决错误

php程序之die调试法 快速解决错误

WBOY
WBOYOriginal
2016-06-13 12:21:261309browse

这是稍微有经验的phper 都会采用如下方式来解决问题
1. 看错误输出, 从输出项 反查源码,在源码处上下文加入调试代码,代码可以是最简单的
$debuglineno = __LINE__;
die($debuglineno);
2. 根据错误输出 Google 之 或者 百度一下

错误的做法:
1. 直接问你的上级,或者同事
2. 直接!上论坛求助 而不是首先经过自己排查
3. 不去分析问题,而是发牢骚

Statement:
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