首页 > 作文

php错误调试

更新时间:2023-04-07 06:13:21 阅读: 评论:0

php错误的类别,主要有以下三大类:
1. 语法错误
程序这种情况通常在执行的时候,会显示错误信息(报错)。这种类型错误会阻止页面php脚本执行其他2015年放假安排时间表图任务。如:
<?php
echo 100.
echo 100;
echo 101;fscanf
?>
执行结果

par error: syntax error, unexpected ‘;’ in…

2. 运行时错误
不会阻止ph保研率大学排名p脚本的运行,但是会阻止该脚本做本身希望做的事情。如下:
<?php
echo “this is a demo”;
header(‘location: );
//header()前不能有任何的输出 header() 必须在任何实际输出之前调用
?>

执行结果:
this is a demo

warning: cannot modify header information – headers already nt 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_t()
*error_reporting()
*header()
*
*/


header(“content-type:text/html;chart=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_t()
ts the value of a c地下城与勇士图片onfiguration option
string ini_t ( string $varname , string $newvalue )
ts 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_t(‘display_errors’,1); 开启php.ini中的display_errors

error_reporting(e_all);
报错程序所有的错误、警告和注意。



error_reporting(e_all);
ini_t(‘display_errors’,1);
作者“我的php之路”

本文发布于:2023-04-07 06:13:19,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/d1c7037952c2688412acb6b95d3f95e2.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:php错误调试.doc

本文 PDF 下载地址:php错误调试.pdf

上一篇:让Tomcat解析php
下一篇:返回列表
标签:脚本   错误   程序   报错
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图