我想在一个名为sitename.php的文件中包含一个网站名称,我试过了
$thisPage='include "sitename.php" '; ?>
并获取错误报告。我还需要将文件添加到
中 include("../../../EngineerLocation/sitename.php");
而不是sitename这个词我希望包含来自php文件的网站名称
答案 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;
// sitename.txt
Page Name
// otherpage.php
<?php
$thisPage = file_get_contents("sitename.txt");
要在网站名称中使用名称包含文件,请执行以下操作:
<?php
$thisPage = file_get_contents("sitename.txt");
include("../../../EngineerLocation/{$thisPage}.php");