从include()获取调用文件名

时间:2012-04-22 04:26:35

标签: php include include-path magic-constants

我想从包含的文件中获取包含另一个文件的文件的名称。

我知道有__FILE__魔术常量,但这没有帮助,因为它返回包含文件的名称,而不是包括之一。

有没有办法做到这一点?或者由于PHP的解释方式,这是不可能的吗?

4 个答案:

答案 0 :(得分:27)

所以这个问题已经很老了,但我一直在寻找答案,在离开这里不满意之后,我遇到了$_SERVER['SCRIPT_FILENAME'];当然,如果执行包含的php文件是一个网页,这是有效的。

这为您提供了服务器上“包含文件”的完整路径。例如/var/www/index.php。因此,如果您只需要文件名,例如index.php,则需要使用basename(),例如

basename($_SERVER['SCRIPT_FILENAME']);

因此,如果在index.php中,您有以下行:

<?php include("./somephp.php"); ?>

在somephp.php中你有

echo "this is the file that included me: " . basename($_SERVER['SCRIPT_FILENAME']);

你会得到

this is the file that included me: index.php

输出到浏览器。如果用户访问您的文件时没有在网址中明确包含文件名,例如www.example.com而不是www.example.com/index.php,则此功能也可用。

答案 1 :(得分:6)

解决方案

知道用于包含文件的函数是includeinclude_oncerequirerequire_once,也知道它们是PHP中的保留字,这意味着它将会无法声明具有相同名称的用户函数,并且基于使用debug_backtrace的{​​{3}},您实际上可以从调用包的文件中找到它。

我们要做的是迭代回溯,直到找到最近调用四个包含函数中的任何一个以及调用它的文件。以下代码阐述了该技术:

function GetIncludingFile()
{
    $file = false;
    $backtrace =  debug_backtrace();
    $include_functions = array('include', 'include_once', 'require', 'require_once');
    for ($index = 0; $index < count($backtrace); $index++)
    {
        $function = $backtrace[$index]['function'];
        if (in_array($function, $include_functions))
        {
            $file = $backtrace[$index]['file'];
            break;
        }
    }
    return $file;
}

上面的代码将返回最后一个包含发生的文件的绝对路径,如果没有包含它将返回false。请注意,该文件可能包含在另一个文件中包含的文件中,上述功能仅适用于最深的包含。

通过简单的修改,您还可以获取最后包含的文件:

function GetIncludedFile()
{
    $file = false;
    $backtrace =  debug_backtrace();
    $include_functions = array('include', 'include_once', 'require', 'require_once');
    for ($index = 0; $index < count($backtrace); $index++)
    {
        $function = $backtrace[$index]['function'];
        if (in_array($function, $include_functions))
        {
            $file = $backtrace[$index - 1]['file'];
            break;
        }
    }
    return $file;
}

观察

请注意,__FILE__不是包含的文件,而是当前文件。例如:

文件A.php:

<?php
    function callme()
    {
        echo __FILE__;
    }
?>

文件B.php:

<?php
    include('A.php');
    callme();
?>

文件index.php:

<?php
    include('B.php');
?>

在上面的例子中,在文件B.php的上下文中,包含的文件是B.php(包含文件是index.php),但函数callme的输出是A的路径.php因为__FILE__在A.php中。


另请注意,$_SERVER['SCRIPT_FILENAME']将提供客户端请求的脚本的绝对路径。如果$_SERVER['SCRIPT_FILENAME'] == __FILE__表示当前文件是请求的文件,那么可能可能不是任何包含...

上述方法检查当前文件是否是请求的文件,但如果没有包含,则检查不是(下面是如何包含所请求文件的示例)。检查是否存在任何包含的实际解决方案可以是count(get_included_files()) == 1


请求的文件可以是以下列方式包含的文件:

文件x.php

<?php
   $var = 'something';
   include('index.php');
?>

文件index.php

<?php
    if (!isset($var))
    {
        include('x.php');
        exit;
    }
    echo 'something';
?>

在上面的例子中,文件index.php将包含x.php,然后x.php将包含index.php,之后index.php输出“something”并将控制权返回给x.php,x.php返回控制到index.php,它到达退出;

这表明即使index.php是请求的脚本,它也包含在另一个脚本中。

答案 2 :(得分:5)

我无法找到解决此问题的简单方法。 但是如果包含一个对你真的很重要,你可以用一些全局变量和你自己的include函数来破解它。

e.g。

<?php                                                                            

    $g_including_files = array();                                                    

    function my_include($file) {                                                     
        $bt =  debug_backtrace();

        global $g_including_files;                                                   
        $g_including_files[basename($file)] = $bt[0]['file']; 
        return include($file);                                                                                                                                                                     
    } 

可能对你有所帮助:))

答案 3 :(得分:4)

这实际上只是PHP模板引擎的特例。考虑具备这个功能:

function ScopedInclude($file, $params = array())
{
    extract($params);
    include $file;
}

然后A.php可以包含C.php,如下所示:

<?php
// A.php
ScopedInclude('C.php', array('includerFile' => __FILE__));

此外,B.php可以同样方式包含C.php而无需麻烦。

<?php
// B.php
ScopedInclude('C.php', array('includerFile' => __FILE__));

C.php可以通过查看$ params数组来了解其包含者。

<?php
// C.php
echo $includerFile;