数据库运维
记录DBA学习成长历程

require dirname(__FILE__)

$config = require dirname(__FILE__) . '/config.php';
一、__FILE__ php定义的为当前文件路径及文件名的常量,如: d:/wwwroot/dedecms/index.php
二、dirname(__FILE__) 为函数,取得文件路径的目录名;
echo dirname("d:/wwwroot/dedecms/index.php")结果为:d:/wwwroot/dedecms
三、require (dirname(__FILE__)."/./config_uc.php"); 假设当前文件为d:/wwwroot/dedecms/index.php结果为
require ("d:/wwwroot/dedecms/config_uc.php");
赞(1)
MySQL学习笔记 » require dirname(__FILE__)