Blogger Information
Blog 250
fans 3
comment 0
visits 321730
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
常见错误报错类型汇总
梁凯达的博客
Original
1413 people have browsed it

//错误一般包括:
 //语法错误:最常⻅,并且也容易修复。如:代码中遗漏⼀个分号。这类错误会阻⽌脚本的执⾏。
 //运行错误:错误⼀般不会阻⽌PHP脚本的执⾏,但会阻⽌当前要做的事情。输出⼀条错误,但php脚本继续
 //逻辑错误:这种错误最麻烦,既不阻⽌脚本执⾏,也不输出错误消

 //在PHP.ini当中可以找到错误级别的说明和设置

 //错误级别包括:
 //E_ERROR(错误值1:致命错误,阻止脚本的运行)
 //E_WARNIN(错误值2:运行时警告,非致命性错误)
 //E_PARS(错误值4:从语法中解析错误)
 //E_NOTIC(错误值8:运行时注意消息)
 //E_CORE_ERROR(错误值16:PHP初始化过程中获得致命错误)
 //E_CORE_WARNING(错误值32:PHP启动时初始化过程中的警告,非致命错误)
 //E_COMPILE_ERRO(错误值64:编译时致命错)
 //E_COMPILE_WARNING(错误值128:编译时警告(非致命错))
 //E_USER_ERRO(错误值256:用户自定义的致命错误)
 //E_USER_WARNIN(错误值512:用户自定义的警告)
 //E_USER_NOTICE(错误值:1024:⽤户⾃定义的提醒(经常是bug))
 //E_STRIC(错误值:2048,编码标准化警告(建议如何修改以向前兼容))
 //E_ALL(错误值:6143 所有的错误、警告和注意信息)

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post