为了账号安全,请及时绑定邮箱和手机立即绑定

控制器出来了为什么出不来方法

<?php

error_reporting(0);

$module=isset($_GET['m'])?$_GET['m']:'Index';

$Action=isset($_GET['a'])?$_GET['a']:'Index';


$mooc=new $module;

$mooc->$action();

class index{

    function __construct(){

    echo '12345<br/>';

    }

    function index(){

    echo '54321';

    }

    function test(){

    echo '54321';

    }

}


define('APP_NAME','App');

define('APP_PATH','./App/');

require('./ThinkPHP/Thinkphp.php');


正在回答

1 回答

$Action=isset($_GET['a'])?$_GET['a']:'Index';


$mooc=new $module;

$mooc->$action();

大写的$Action改成$action

1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
快速入门ThinkPHP框架—理论篇
  • 参与学习       89139    人
  • 解答问题       562    个

快速入门ThinkPHP框架教程,掌握ThinkPHP的理论基础

进入课程

控制器出来了为什么出不来方法

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信