Notice: Undefined index: m in D:\phpStudy\WWW\index.php on line 9

Notice:Undefinedindex:cinD:\phpStudy\WWW\index.phponline12Notice:Undefinedindex:ainD:... Notice: Undefined index: c in D:\phpStudy\WWW\index.php on line 12
Notice: Undefined index: a in D:\phpStudy\WWW\index.php on line 15
源代码如下:
<?php
require("config.php");//引入配置
//获取用户信息
$user_id = isset($_COOKIE['user_id'])?$_COOKIE['user_id']:'';
$user_name = isset($_COOKIE['user_name'])?$_COOKIE['user_name']:'';
$user_type = isset($_cookie['user_type'])?$_COOKIE['user_type']:'';
$type_name = isset($_COOKIE['type_name'])?$_COOKIE['type_name']:'';
//获取模块名称
$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';
//定义模块名称
$m_name=$m_str;
//定义类名称
$c_name=$c_str;
//定义函数名称
$a_name=$a_str;
//文件存放及命名规则
$m_path='public/'.$m_name.'/';
$m_file='public/'.$m_name.'/'.$m_name.'.php';
$c_path='public/'.$m_name.'/model/';
$c_file='public/'.$m_name.'/model/'.$c_name.'.php';
$v_path='public/'.$m_name.'/view/';
$v_file='public/'.$m_name.'/view/'.$a_name.'.php';
//加载模块配置文件
require($m_file);
//加载类文件
require($c_file);
//实例化类文件
$controller=new $c_name;
//运行该实例化后的类中的函数
$controller->$a_name();
展开
 我来答
匿名用户
2017-02-15
展开全部
$m_str=$_GET['m'];

$c_str=$_GET['c'];
$a_str=$_GET['a'];
以上三处的问题,没获取到!
改成isset($_GET['m'])?$_GET['m']:'';
刀刀的蜗牛
2017-02-15 · 超过67用户采纳过TA的回答
知道小有建树答主
回答量:144
采纳率:100%
帮助的人:67.5万
展开全部
你有一个index变量没有声明,所以会报错
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式