0

我一直在使用以下内容来返回方法的文件路径和行号

echo (__METHOD__) . "() - ln : " . (__LINE__) . "<br />";

我真的很想把它更新成一个类(比如comment.php)

class comment
{   
    public static function show()
    {
        echo (__METHOD__) . "() - ln : " . (__LINE__) . "<br />";
    }
}

我可以在我的开发中的任何地方打电话

if(COMMENT) comment::show();

并让它返回调用代码的文件路径。我尝试了一些变体,但我错过了一些东西。你能帮我吗?

谢谢

4

2 回答 2

6

查看debug_backtrace - 这可以为您提供有关您需要的调用者的信息。

例如:

<?php

class comment
{
    public static function show()
    {
            $trace=debug_backtrace();
            print_r($trace);
    }

    public function test()
    {
         comment::show();
    }

}

$comment=new comment();
$comment->test();

将产生这个输出

 Array
(
    [0] => Array
        (
            [file] => /tmp/test.php
            [line] => 13
            [function] => show
            [class] => comment
            [type] => ::
            [args] => Array()

        )

    [1] => Array
        (
            [file] => /tmp/test.php
            [line] => 19
            [function] => test
            [class] => comment
            [object] => comment Object ()
            [type] => ->
            [args] => Array()

        )

)

第一个元素显示调用者详细信息 - 根据您的喜好对其进行格式化,如果有帮助也显示整个调用堆栈!

于 2009-01-28T12:10:40.067 回答
0

尝试:

echo __FILE__;
于 2009-01-28T12:08:20.167 回答