使用魔术常量类返回调用类的文件路径

发布于 2024-07-13 00:54:15 字数 474 浏览 5 评论 0原文

我一直在使用以下方法返回文件路径和行号,

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

我真的很想将其更新为一个类(例如 comment.php)

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

,我可以从开发中的任何位置调用

if(COMMENT) comment::show();

该类,并让它返回该方法的文件路径调用代码。 我尝试了几种变体,但我遗漏了一些东西。 你能帮我吗?

谢谢

I've been using the following to return filepath and line number of a method

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

I'd really like to update this to a class (say comment.php)

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

that I can call from anywhere in my development

if(COMMENT) comment::show();

and have it return the filepath of the calling code. I've tried a few variants but I'm missing something. Can you help?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

眼前雾蒙蒙 2024-07-20 00:54:16

查看 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()

        )

)

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

Check out debug_backtrace - this can give you the information about the caller that you need.

For example:

<?php

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

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

}

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

Will produce this output

 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()

        )

)

The first element shows the caller details - format this to your liking, and display the whole call stack too if it helps!

等风也等你 2024-07-20 00:54:16

尝试:

echo __FILE__;

Try:

echo __FILE__;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文