最新消息: 新版网站上线了!!!

thinkphp5.1默认不支持修改应用目录application,可通过修改框架代码实现

thinkphp5.1默认不支持通过定义常量或者修改配置文件来修改应用目录application的名称,只能通过修改框架代码实现

/thinkphp/library/App.php : 873行找到application修改为你自定义的名称,代码修改完之后记着把你的目录名称也修改了/application修改为比如/app


   /**
     * 获取应用类库目录
     * @access public
     * @return string
     */
    public function getAppPath()
    {
        if (is_null($this->appPath)) {
            $this->appPath = Loader::getRootPath() . 'application' . DIRECTORY_SEPARATOR;
        }
        return $this->appPath;
    }


转载请注明:谷谷点程序 » thinkphp5.1默认不支持修改应用目录application,可通过修改框架代码实现