错误提示:Notice: Undefined index: m in D:\phpStudy\WWW\index.php on line 9
源代码为:$m_str=$_GET['m'];if(empty($m_str))$m_str='web';//获取类名称$c_str=$_GET['c'];if(empt...
源代码为:$m_str=$_GET['m'];
if (empty($m_str)) $m_str = 'web';
//获取类名称
$c_str=$_GET['c'];
if (empty($c_str)) $c_str = 'web_home';
//获取函数名称
$a_str=$_GET['a'];
if (empty($a_str)) $a_str = 'home_index'; 展开
if (empty($m_str)) $m_str = 'web';
//获取类名称
$c_str=$_GET['c'];
if (empty($c_str)) $c_str = 'web_home';
//获取函数名称
$a_str=$_GET['a'];
if (empty($a_str)) $a_str = 'home_index'; 展开
1个回答
2017-02-15
展开全部
错误很清楚,你没有传递m参数
你应该先用isset判断下$_GET['m']是否存在在继续你的操作。
你应该先用isset判断下$_GET['m']是否存在在继续你的操作。
追问
能给个实例吗?
追答
if(isset($_GET['m']))
{
// 你的代码。
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询