localhost/index页面上显示错误
我想问问 问什么会出现这种情况啊00.?
我想问问 问什么会出现这种情况啊00.?
2016-04-23
<?php
namespace Home\Controller;
use Think\Controller;
class IndexController extends Controller{
function _construct(){
echo "调用了index控制器<br/>";
}
function index(){
echo'我是index控制器的index方法';
}
}
/*$module=isset($_GET['m'])?$_GET['m']:'Index';
$action=isset($_GET['a'])?$_GET['a']:'Index';
$mooc=new $module();
$mooc->$action();
exit;
define('APP_NAME','App');
define('APP_PATH','./App/');
require ('./ThinkPHP/ThinkPHP.php');
*/
?>
可以了
<?php
$module=isset($_GET['m'])?$_GET['m']:'Index';
$action=isset($_GET['a'])?$_GET['a']:'Index';
$mooc=new $module();
$mooc->$action();
class index(){
function __construct(){
echo '调用了index控制器'<br/>;
}
function index(){
echo'我是index控制器的index方法';
}
}
exit;
define('APP_NAME','App');
define('APP_PATH','./App/');
require ('./ThinkPHP/ThinkPHP.php');
我发现自己construction位置有错误...但是还是显示不出来00.
举报