0

我需要在其他脚本的一个目录中包含一个配置文件的路径,向上或向下几个目录。

我的配置文件有这样的功能:

$execute_path = getcwd() . "/execute.php";

execute.php 文件与配置文件位于同一目录中,这样就可以了,输出将变为:

public-html/config-directory/execute.php

现在,如果在原始目录之外的目录中使用相同的函数,它会将 getcwd() 函数视为在该目录中。

例如,如果从目录 public-html/one/two/three/somefile.php 调用它,如下所示:

<?php 
include(pathto/config.php)
echo $execute_path;
?>

输出变为 publichtml/one/two/three/execute.php 而不是保持 publichtml/config-directory/execute.php

我怎样才能在这里实现我想要的?抱歉,解释太长了。谢谢。

4

1 回答 1

1

包含可能非常棘手,为什么我的建议是

//config.php

define("SITE_PATH", "public-html/config-directory");


//execute.php

$execute_path =SITE_PATH . "/execute.php";

//run.php
include_once 'config.php';
include_once 'execute.php';

echo $execute_path;
于 2012-04-27T16:54:18.507 回答