天天看点

php 上级调用函数,PHP 5中的调用者函数?

php 上级调用函数,PHP 5中的调用者函数?

慕姐4208626

这已经很晚了,但是我想分享一下函数,它将给出调用当前函数的名称。public function getCallingFunctionName($completeTrace=false)

    {

        $trace=debug_backtrace();

        if($completeTrace)

        {

            $str = '';

            foreach($trace as $caller)

            {

                $str .= " -- Called by {$caller['function']}";

                if (isset($caller['class']))

                    $str .= " From Class {$caller['class']}";

            }

        }

        else

        {

            $caller=$trace[2];

            $str = "Called by {$caller['function']}";

            if (isset($caller['class']))

                $str .= " From Class {$caller['class']}";

        }

        return $str;

    }我希望这将是有用的。