天天看點

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;

    }我希望這将是有用的。