php的调试功能有什么作用呢

WBOY
Release: 2016-06-23 13:47:27
Original
1004 people have browsed it

当然主要是发现bug,除此之外难道就没有别的作用吗,比如它能不能找出代码逻辑结构啥的,有此迷茫,请指教。


回复讨论(解决方案)

能发现bug还不够吗,根据bug也能找到逻辑结构。

系统调试配置中设置了:

    开启日志记录,任何错误信息和调试信息都会详细记录,便于调试;
    关闭模板缓存,模板修改可以即时生效;
    记录SQL日志,方便分析SQL;
    关闭字段缓存,数据表字段修改不受缓存影响;
    开启文件大小写严格检查(即使是Windows平台),帮助你提前发现Linux部署问题;

调试模式的目的就是为了更加方便的发现、记录、分析和解决错误,而在部署模式下面,可能很多潜在的错误你根本发现不了,这些错误就像一颗定时*,存在隐患。

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