tp5开启多应用目录解决方法

step1:

index.php //入口文件

code:

// [ 应用入口文件 ]
	$queryStringArr = isset($_SERVER['REDIRECT_URL'])?explode('/', $_SERVER['REDIRECT_URL']):'';
	// echo '
';
	// print_r($_SERVER);
	if(!empty($queryStringArr)){
		$module = $queryStringArr[1];
	}else{
		$module = '';
	}
	$app = '';
	$namespace = '';
	// 绑定当前访问到index模块
	switch($module){
		case 'merchant'://自定义的模块文件夹名称,以及namespace
			$app = 'merchant';  
			$namespace = 'merchant';
			break;
		default:
			$app = 'application';  
			$namespace = 'app';
			break;
	}

	// 定义应用目录
	define('APP_PATH', __DIR__ . '/'.$app.'/');
	// 加载框架引导文件
	require __DIR__ . '/thinkphp/start.php';

step2:

start.php//启用文件

code:

namespace think;

	// ThinkPHP 引导文件
	// 加载基础文件
	require __DIR__ . '/base.php';
	// 执行应用
	App::run($namespace)->send();

step3:

App.php//tp核心包应用初始化文件

code:

/**
     * 初始化应用
     */
    public static function initCommon()
    {
        if (empty(self::$init)) {
		//注释这三行
		//            if (defined('APP_NAMESPACE')) {
		//                self::$namespace = APP_NAMESPACE;
		//            }
            Loader::addNamespace(self::$namespace, APP_PATH);

            // 初始化应用
            $config       = self::init();
            self::$suffix = $config['class_suffix'];

            // 应用调试模式
            self::$debug = Env::get('app_debug', Config::get('app_debug'));
            if (!self::$debug) {
                ini_set('display_errors', 'Off');
            } elseif (!IS_CLI) {
                //重新申请一块比较大的buffer
                if (ob_get_level() > 0) {
                    $output = ob_get_clean();
                }
                ob_start();
                if (!empty($output)) {
                    echo $output;
                }
            }

            if (!empty($config['root_namespace'])) {
                Loader::addNamespace($config['root_namespace']);
            }

            // 加载额外文件
            if (!empty($config['extra_file_list'])) {
                foreach ($config['extra_file_list'] as $file) {
                    $file = strpos($file, '.') ? $file : APP_PATH . $file . EXT;
                    if (is_file($file) && !isset(self::$file[$file])) {
                        include $file;
                        self::$file[$file] = true;
                    }
                }
            }

            // 设置系统时区
            date_default_timezone_set($config['default_timezone']);

            // 监听app_init
            Hook::listen('app_init');

            self::$init = true;
        }
        return Config::get();
    }
	
	
	/**
     * 执行应用程序
     * @access public
     * @param Request $request Request对象
     * @return Response
     * @throws Exception
     */
    public static function run($namespace,Request $request = null)
    {
		// echo $namespace;die;
        self::$namespace = $namespace;//给成员变量赋值(当前启动文件传入的namespace)
        is_null($request) && $request = Request::instance();

        try {
            $config = self::initCommon();
            if (defined('BIND_MODULE')) {
                // 模块/控制器绑定
                BIND_MODULE && Route::bind(BIND_MODULE);
            } elseif ($config['auto_bind_module']) {
                // 入口自动绑定
                $name = pathinfo($request->baseFile(), PATHINFO_FILENAME);
                if ($name && 'index' != $name && is_dir(APP_PATH . $name)) {
                    Route::bind($name);
                }
            }

            $request->filter($config['default_filter']);

            // 默认语言
            Lang::range($config['default_lang']);
            if ($config['lang_switch_on']) {
                // 开启多语言机制 检测当前语言
                Lang::detect();
            }
            $request->langset(Lang::range());

            // 加载系统语言包
            Lang::load([
                THINK_PATH . 'lang' . DS . $request->langset() . EXT,
                APP_PATH . 'lang' . DS . $request->langset() . EXT,
            ]);

            // 获取应用调度信息
            $dispatch = self::$dispatch;
            if (empty($dispatch)) {
                // 进行URL路由检测
                $dispatch = self::routeCheck($request, $config);
            }
            // 记录当前调度信息
            $request->dispatch($dispatch);

            // 记录路由和请求信息
            if (self::$debug) {
                Log::record('[ ROUTE ] ' . var_export($dispatch, true), 'info');
                Log::record('[ HEADER ] ' . var_export($request->header(), true), 'info');
                Log::record('[ PARAM ] ' . var_export($request->param(), true), 'info');
            }

            // 监听app_begin
            Hook::listen('app_begin', $dispatch);
            // 请求缓存检查
            $request->cache($config['request_cache'], $config['request_cache_expire'], $config['request_cache_except']);

            $data = self::exec($dispatch, $config);
        } catch (HttpResponseException $exception) {
            $data = $exception->getResponse();
        }

        // 清空类的实例化
        Loader::clearInstance();

        // 输出数据到客户端
        if ($data instanceof Response) {
            $response = $data;
        } elseif (!is_null($data)) {
            // 默认自动识别响应输出类型
            $isAjax   = $request->isAjax();
            $type     = $isAjax ? Config::get('default_ajax_return') : Config::get('default_return_type');
            $response = Response::create($data, $type);
        } else {
            $response = Response::create();
        }

        // 监听app_end
        Hook::listen('app_end', $response);

        return $response;
    }

step4:

config.php模块内的文件

code:

//下面两行没有就增加,有就修改值为下面对应的值
	// 是否启用控制器类后缀
    'controller_suffix' => false,
    // 应用类库后缀
    'class_suffix'  => false,

至此就是模块内部的正常文件创建以及coding了

有一个小问题,就是c/m/a如果不全输入的时候,就会访问文件夹列表

你可能感兴趣的:(tp,tp5)