如何获取类外部函数中的类/函数/行名称

发布于 2024-11-16 18:24:54 字数 775 浏览 0 评论 0原文

示例:

class myExample
{
    public function example_fn()
    {
        $example_val = $this->some_fn();
        _debug( $example_val, _get_position() );
    }
}

/**
 * Debug function
 */
function _debug( $input, $position )
{
    $output  = '<strong>Inside: '.$position.'</strong><br />';
    $output .= '<pre>';
    $output .= print_r( var_export( $input, true ), true );
    $output .= '</pre>';

    return print $output;
}

/**
 * Position function
 */
function _get_position()
{
    return 'Class: '.__CLASS__.' // Function: '.__FUNCTION__.' // Line: '.__LINE__;
}

问题:

在当前设置下,输出返回_get_position() 函数定义位置的值。 我可以以某种方式从调用 _get_position() 函数的位置获取类/函数/行吗?

谢谢你!

Example:

class myExample
{
    public function example_fn()
    {
        $example_val = $this->some_fn();
        _debug( $example_val, _get_position() );
    }
}

/**
 * Debug function
 */
function _debug( $input, $position )
{
    $output  = '<strong>Inside: '.$position.'</strong><br />';
    $output .= '<pre>';
    $output .= print_r( var_export( $input, true ), true );
    $output .= '</pre>';

    return print $output;
}

/**
 * Position function
 */
function _get_position()
{
    return 'Class: '.__CLASS__.' // Function: '.__FUNCTION__.' // Line: '.__LINE__;
}

Question:

With the current setup, the output returns the values of the position where the _get_position() function was defined.
Can I somehow get the Class/function/line from where the _get_position() function was called?

Thank you!

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

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

发布评论

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

评论(2

风筝在阴天搁浅。 2024-11-23 18:24:54

你必须使用 debug_backtrace

function _get_position()
{
    $stack = debug_backtrace();
    return 'Class: '.$stack[1]['class'].' // Function: '.$stack[1]['function'].' // Line: '.$stack[0]['line'];
}

You got to use debug_backtrace for that:

function _get_position()
{
    $stack = debug_backtrace();
    return 'Class: '.$stack[1]['class'].' // Function: '.$stack[1]['function'].' // Line: '.$stack[0]['line'];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文