thinkphp6定义ROOT_PATH
文章描述:
thinkphp6定义全局ROOT_PATH变量
1、打开public/index.php文件,在
namespace think;
下面新增
if (!defined('DS')) {
define('DS', DIRECTORY_SEPARATOR);
}
if(!defined('ROOT_PATH')){
define('ROOT_PATH',str_replace('\\','/',realpath(dirname(__FILE__).'/'))."/");
}
发布时间:2023/01/06
发表评论