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(); 展开
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']:'';
$c_str=$_GET['c'];
$a_str=$_GET['a'];
以上三处的问题,没获取到!
改成isset($_GET['m'])?$_GET['m']:'';
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询