从外部文件添加包含

时间:2014-01-29 19:17:05

标签: php

我想在一个名为sitename.php的文件中包含一个网站名称,我试过了

$thisPage='include "sitename.php" '; ?>

并获取错误报告。我还需要将文件添加到

 include("../../../EngineerLocation/sitename.php");

而不是sitename这个词我希望包含来自php文件的网站名称

2 个答案:

答案 0 :(得分:0)

尝试:

include("$_SERVER[DOCUMENT_ROOT]/sitename.php");

答案 1 :(得分:0)

您可以包含一个实际的php文件:

// sitename.php
<?php
$thisPage = "Page Name";

// otherpage.php
<?php
include("sitename.php");
echo $thisPage;

或使用file_get_contents

// sitename.txt
Page Name
// otherpage.php
<?php
$thisPage = file_get_contents("sitename.txt");

要在网站名称中使用名称包含文件,请执行以下操作:

<?php
$thisPage = file_get_contents("sitename.txt");
include("../../../EngineerLocation/{$thisPage}.php");