$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");