The following brings you an article on how to implement the thinkphp configuration file path. The content is quite good, so I will share it with you now and give it as a reference.
//系统常量定义 //去THinkPHP手册中进行查找 echo "
"."网站的根目录地址".__ROOT__." "; echo "
"."入口文件地址".__APP__." "; echo "
"."当前模块地址".__URL__." "; echo "
"."当前url地址".__SELF__." "; echo "
"."当前操作地址".__ACTION__." "; echo "
"."当前模块的模板目录".__CURRENT__." "; echo "
"."当前操作名称".ACTION_NAME." "; echo "
"."当前项目目录".APP_PATH." "; echo "
"."当前项目名称".APP_NAME." "; echo "
"."当前项目的模板目录".APP_TMPL_PATH." "; echo "
"."项目的公共文件目录".APP_PUBLIC_PATH." "; echo "
"."项目的配置文件目录".CONFIG_PATH." "; echo "
"."项目的公共文件目录".COMMON_PATH." "; //自动缓存与表相关的全部信息 echo "
"."项目的数据文件目录".DATA_PATH." runtime下的data目录"; echo "
"." ".GROUP_NAME.""; echo "
"." ".IS_CGI.""; echo "
"." ".IS_WIN.""; echo "
"." ".LANG_SET.""; echo "
"." ".LOG_PATH.""; echo "
"." ".LANG_PATH.""; echo "
"." ".TMPL_PATH.""; //js放入的位置,供多个应用的公共资源 echo "
"." ".WEB_PUBLIC_PATH."";
The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!
Related recommendations:
Using Qiniu Cloud Storage in ThinkPHP
About thinkPHP’s built-in string interception function
The above is the detailed content of Thinkphp configuration file path method. For more information, please follow other related articles on the PHP Chinese website!