本文介绍了为什么我会得到“未定义索引"?从我的PHP?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我运行此代码时:
<?php
if (preg_match('/^[a-z0-9]+$/', $_GET['p'])) {
$page = realpath("includes/$_GET[p].php");
if ($page) {
include $page;
}
}
?>
我收到此错误:
推荐答案
错误消息指出没有键为p
的数组项.如果不能保证确实存在变量(或数组项),则应首先使用 isset
函数进行检查:
The error message says that there is no array item with the key p
. If you cannot guarantee that a variable (or array item) does exist, you should first check it with the isset
function:
if (isset($_GET['p']) && preg_match('/^[a-z0-9]+$/', $_GET['p'])) {
$page = realpath("includes/$_GET[p].php");
if ($page) {
include $page;
}
}
这篇关于为什么我会得到“未定义索引"?从我的PHP?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!