包括config.php无法正常工作

时间:2013-04-10 05:07:45

标签: include config document-root

在我的doctype和html声明之后,我有:

<?php include ('/setup/config.php'); ?>
// leading slash to get to site root[?]

<?php $pageTitle = 'Home'; include ('header.php'); ?>

<body></body>

我的config.php有:

<?php 
define('ROOT',$_SERVER['DOCUMENT_ROOT']); 
define('INCLUDES',ROOT.'/dir/dir/dir/'); 
?>

内容未显示。我的交易出了什么问题? - 尝试没有前导斜线,仍然无效。

我认为我的配置文件必须首先加载,因为它定义了ROOT,其他所有包含依赖于...

1 个答案:

答案 0 :(得分:0)

事实证明,据我所知,领先的斜线[/]并不适合在PHP中获取doc root。所以,我仍然需要使用../../../等等。然后,可以找到config.php文件。 :]