PHP中的绝对(或相对?)路径

时间:2011-06-23 10:58:07

标签: php path include relative-path absolute-path

很抱歉,因为它可能会被多次回答,但我的问题有点不同

我喜欢树

/var/www/path/to/my/app/
   -- index.php
   -- b.php
   -- inc/
      -- include.php

(我正在从index.php访问inc / include.php,

include "inc/include.php";

但是在include.php中,我需要获取APPLICATION根的绝对路径,而不是DOCUMENT_ROOT 所以结果,我需要能够使用这个命令

//inc/include.php
include(APP_ROOT."/b.php");

重复,我不想打电话

include("../b.php");

是否有原生功能,如果可能的话?

更新:

我想通过PHP获取PATH,因为任何开源都需要进行此路径检测 为什么?如果我想要从ajax / 1 / somethiing.php中包含inc / include.php,那么成功但inc / include.php会尝试包含ajax / b.php而不是b.php

对于佩卡:

我有这棵树

-- index.php
-- b.php
-- inc/
    -- include.php
-- ajax/
    -- 1/
       -- ajax.php

现在看。从index.php,您将调用inc / include.php

include("inc/include.php"); //included file

现在,包含文件搜索

include("../b.php");

它会起作用,但是!如果我从ajax / 1 / ajax.php调用include of inc / include.php,就像这样

include("../../inc/include.php");

它会起作用,但包含的文件会尝试包含

../b.php 
而不是     ../../b.php as path是相对于incL包含inc / include.php的文件 知道了吗?

6 个答案:

答案 0 :(得分:5)

  

是否有原生功能,如果可能的话?

没有。文档根是您可以从PHP获得的唯一内容。 (但请注意,在您的方案中,您只需调用include("b.php");,因为脚本仍在index.php的上下文中。)

重新更新:

您可以在中央配置文件中定义全局应用程序根目录。假设您的应用根目录中有config.php。然后做一个

define("APP_ROOT", dirname(__FILE__));

仍然必须包含配置文件,你必须为它使用相对路径,例如

include ("../../../config.php");

但是一旦你完成了,你可以相对于脚本中的app root工作:

include (APP_ROOT."/b.php");  <--  Will always return the correct path

答案 1 :(得分:2)

您可以使用当前文件作为基础来解析路径

include dirname(__FILE__) . DIRECTORY_SEPARATOR . '/../b.php';

或自PHP5.3起

include __DIR__ . \DIRECTORY_SEPERATOR . '/../b.php';

答案 2 :(得分:1)

添加到index.php:

$GLOBALS['YOUR_CODE_ROOT'] = dirname(__FILE__);

添加到您的inc/include.php

require_once $GLOBALS['YOUR_CODE_ROOT'].'/b.php';

答案 3 :(得分:1)

只需使用

define('APP_ROOT', 'your app root');
例如,在index.php中

。或者在配置文件中。

答案 4 :(得分:1)

虽然它没有定义您的应用程序的根路径,但可能有兴趣查看set_include_path()

答案 5 :(得分:1)

如果您只知道相对路径,那么您必须至少从相对路径开始。您可以使用realpath返回规范化的绝对​​路径名,然后将其存储在某处。

index.php或配置文件中:

define(
    'INC',
    realpath(dirname(__FILE__)) .
    DIRECTORY_SEPARATOR .
    'inc' .
    DIRECTORY_SEPARATOR
);

其他地方:

include(INC . 'include.php');

或者,为不同的位置定义一些常量:

define('DOCUMENT_ROOT', realpath(dirname(__FILE__)) . DIRECTORY_SEPARATOR);
define('INC', DOCUMENT_ROOT . 'inc' . DIRECTORY_SEPARATOR);
define('AJAX', DOCUMENT_ROOT . 'ajax' . DIRECTORY_SEPARATOR);

其他地方:

include(DOCUMENT_ROOT . 'b.php');
include(INC . 'include.php');
include(AJAX . 'ajax.php');