search
Homephp教程php手册php错误调试

php错误调试

Jun 13, 2016 am 10:44 AM
phpthreehostConditionofprogramcategorygrammardebugPassmistake

Php错误的类别,主要有以下三大类:
1.       语法错误
程序这种情况通常在执行的时候,会显示错误信息(报错)。这种类型错误会阻止页面php脚本执行其他任务。如:
Echo 100.
Echo 100;
Echo 101;
?>
执行结果
 
Parse error: syntax error, unexpected ';' in…
 
2.       运行时错误
不会阻止php脚本的运行,但是会阻止该脚本做本身希望做的事情。如下:
echo  “this is a demo”;
header('Location: http://www.example.com/');
//header()前不能有任何的输出  header() 必须在任何实际输出之前调用
?>
 
执行结果:
this is a demo

Warning: Cannot modify header information - headers already sent by (output started at E:\PhpProject1\test.php:7) in E:\PhpProject1\test.php on line 8
 
 
3.       程序逻辑错误
这种错误不但不会阻止php脚本的执行,也不会显示错误信息。一般用的调试程序手段是异常处理.如
$a=5;
If($a=6){
Echo $a;
}
?>
运行结果为6
 
 
 
报错级别:
错误 ERROR
    页面脚本会停止运行
警告WARNING
    页面脚本不会停止运行
通知NOTICE
页面脚本不会停止运行
 
/*
*ini_set()
*error_reporting()
*header()
*
*/
 
 
header(“Content-type:text/html;charset=utf-8”);
 
 
echo $a; //Notice: Undefined variable: a
echo "
+++++++++++++++++++++
";
echo "this is a Notice:Undefined variable";
 
 
echo “

”;
var_dump();
   echo"
+++++++++++++++++++++
";
echo "This ia a Warning level Warning: Wrong parameter count for var_dump()...";
 
 
echo “

”;
ech “This is a demo”;
   echo"
+++++++++++++++++++++
";
echo "This ia a Warning level Warning: Wrong parameter count for var_dump()...";
?>
 
 
 
ini_set()
Sets the value of a configuration option
string ini_set ( string $varname , string $newvalue )
Sets the value of the given configuration option. The configuration option will keep this new value during the script's execution, and will be restored at the script's ending.
为给出(指定)的配置选项赋值,在程序执行的过程中,配置选项将保持使用这个新赋给的值。当程序执行完成时,配置选项将恢复系统的默认值。
    ini_set(‘display_errors’,1); 开启php.ini中的display_errors
 
error_reporting(E_ALL);
报错程序所有的错误、警告和注意。
 
 
 
error_reporting(E_ALL);
ini_set(‘display_errors’,1);
作者“我的PHP之路”

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor