php总是显示notice会有什么影响吗?会不会影响功能?
2个回答
展开全部
虽然PHP不需要定义变量, 但尽量在 { } 块之外初始化变量.
比如
if (!empty($arr)) {
$msg = 'not empty';
} else {
$msg = 'is empty';
}
echo $msg;
这里会有个 notice 说 $msg 未定义或 not isset.
你只需在 {} 块之前初始化一下就可以了.
$arr = array(); # 初始化
if (!empty($arr)) {
$msg = 'not empty';
} else {
$msg = 'is empty';
}
echo $msg;
更完美点:
你在程序开头写上 error_reporting(E_ALL);
然后运行能不出其它任何PHP提示, 这样更好了. 无错总比有错运行快.
比如
if (!empty($arr)) {
$msg = 'not empty';
} else {
$msg = 'is empty';
}
echo $msg;
这里会有个 notice 说 $msg 未定义或 not isset.
你只需在 {} 块之前初始化一下就可以了.
$arr = array(); # 初始化
if (!empty($arr)) {
$msg = 'not empty';
} else {
$msg = 'is empty';
}
echo $msg;
更完美点:
你在程序开头写上 error_reporting(E_ALL);
然后运行能不出其它任何PHP提示, 这样更好了. 无错总比有错运行快.
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询