您现在的位置:计算机技术学习网 > 技术中心 > WEB编程 > PHP >

php错误调试

来源:网络 责任编辑:栏目编辑 发表时间:2013-07-02 02:07 点击:

Php错误的类别,主要有以下三大类:
1.       语法错误
程序这种情况通常在执行的时候,会显示错误信息(报错)。这种类型错误会阻止页面php脚本执行其他任务。如:
<?php
Echo 100.
Echo 100;
Echo 101;
?>
执行结果
 
Parse error: syntax error, unexpected ';' in…
 
2.       运行时错误
不会阻止php脚本的运行,但是会阻止该脚本做本身希望做的事情。如下:
<?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脚本的执行,也不会显示错误信息。一般用的调试程序手段是异常处理.如
<?php
$a=5;
If($a=6){
Echo $a;
}
?>
运行结果为6
 
 
 
报错级别:
错误 ERROR
    页面脚本会停止运行
警告WARNING
    页面脚本不会停止运行
通知NOTICE
页面脚本不会停止运行
 
<?php
/*
*ini_set()
*error_reporting()
*header()
*
*/
 
 
header(“Content-type:text/html;charset=utf-8”);
 
 
echo $a; //Notice: Undefined variable: a
echo "<br/>+++++++++++++++++++++<br/>";
echo "this is a Notice:Undefined variable";
 
 
echo “<p>”;
var_dump();
   echo"<br/>+++++++++++++++++++++<br/>";
echo "This ia a Warning level Warning: Wrong parameter count for var_dump()...";
 
 
echo “<p>”;
ech “This is a demo”;
   echo"<br/>+++++++++++++++++++++<br/>";
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之路”

    相关新闻>>

      发表评论
      请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
      用户名: 验证码:点击我更换图片
      最新评论 更多>>

      推荐热点

      • PHP测试
      • 十天学会php之第六天
      • 几种显示数据的方法的比较
      • 使用xmlhttp为网站增加域名查询功能
      • PHP+MYSQL+Javascript数据库查询结果的动态显示
      • 查找数组中指定键名的值
      • 用redis实现跨服务器session
      • 用新浪微博接口发送图片微博失败的原因
      • smarty局部缓存技术[源码分析]
      网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
      Copyright © 2008-2015 计算机技术学习交流网. 版权所有

      豫ICP备11007008号-1