[php] PHP : 함수가 어디에서 호출되었는지 확인

PHP의 함수가 어디에서 호출되었는지 알아내는 방법이 있습니까? 예:

function epic()
{
  fail();
}

function fail()
{
  //at this point, how do i know, that epic() has called this function?
}



답변

사용할 수 있습니다 debug_backtrace().

예:

<?php

function epic( $a, $b )
{
    fail( $a . ' ' . $b );
}

function fail( $string )
{
    $backtrace = debug_backtrace();

    print_r( $backtrace );
}

epic( 'Hello', 'World' );

산출:

Array
(
    [0] => Array
        (
            [file] => /Users/romac/Desktop/test.php
            [line] => 5
            [function] => fail
            [args] => Array
                (
                    [0] => Hello World
                )

        )

    [1] => Array
        (
            [file] => /Users/romac/Desktop/test.php
            [line] => 15
            [function] => epic
            [args] => Array
                (
                    [0] => Hello
                    [1] => World
                )

        )

)


답변

사용 debug_backtrace():

function fail()
{
    $backtrace = debug_backtrace();

    // Here, $backtrace[0] points to fail(), so we'll look in $backtrace[1] instead
    if (isset($backtrace[1]['function']) && $backtrace[1]['function'] == 'epic')
    {
        // Called by epic()...
    }
}


답변

내가 찾은 가장 빠르고 간단한 솔루션

public function func() { //function whose call file you want to find
    $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1);
}

$trace: Array
(
    [0] => Array
        (
            [file] => C:\wamp\www\index.php
            [line] => 56
            [function] => func
            [class] => (func Class namespace)
            [type] => ->
        )

)

Lenovo 노트북에서 속도를 테스트했습니다 : Intel Pentiom CPU N3530 2.16GHz, RAM 8GB

global $times;
$start = microtime(true);
$trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1);
$times[] = microtime(true) - $start;

결과 :

count($times):  97
min:    2.6941299438477E-5
max:   10.68115234375E-5
avg:    3.3095939872191E-5
median: 3.0517578125E-5
sum:  321.03061676025E-5

the same results with notation without E-5
count($times):  97
min:    0.000026941299438477
max:    0.0001068115234375
avg:    0.000033095939872191
median: 0.000030517578125
sum:    0.0032103061676025


답변

따라서 여전히 방법을 모른다면 여기보다 해결책이 있습니다.

$backtrace = debug_backtrace();
echo 'Mu name is '.$backtrace[1]['function'].', and I have called him! Muahahah!';


답변

debug_backtrace 함수 사용 : http://php.net/manual/en/function.debug-backtrace.php


답변

아래 코드를 시도하십시오.

foreach(debug_backtrace() as $t) {
   echo $t['file'] . ' line ' . $t['line'] . ' calls ' . $t['function'] . "()<br/>";
}


답변

스택 맨 위에서 호출의 정확한 출처를 추적하려면 다음 코드를 사용할 수 있습니다.

$call_origin = end(debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS));

이것은 연결된 함수를 무시하고 가장 관련성이 높은 호출 정보 만 가져옵니다 (relevant는 수행하려는 작업에 따라 느슨하게 사용됨).