在我的 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...