📜  PHP |反射生成器 getTrace()函数

📅  最后修改于: 2022-05-13 01:56:24.325000             🧑  作者: Mango

PHP |反射生成器 getTrace()函数

ReflectionGenerator::getTrace()函数是PHP中的一个内置函数,用于返回指定当前正在执行的生成器的跟踪。

句法:

array ReflectionGenerator::getTrace ( void )

参数:此函数不接受任何参数。

返回值:此函数返回指定当前正在执行的生成器的跟踪。

下面的程序说明了PHP中的ReflectionGenerator::getTrace()函数:
程序_1:

GFG();
  
// Using ReflectionGenerator over the 
// above generator 'A'
$B = new ReflectionGenerator($A);
  
// Calling the getTrace() function
$C = $B->getTrace();
  
// Getting the trace of the specified 
// executing generator 'A'
var_dump($C);
?>

输出:

array(0) {
}

程序_2:

valid();
  
// Using ReflectionGenerator() over the 
// above generator 'A'
$A = new ReflectionGenerator($A);
  
// Calling the getTrace() function
$B = $A->getTrace();
  
// Getting the the trace of the 
// executing generator 'A'
var_dump($B);
?>

输出:

array(2) {
  [0]=>
  array(4) {
    ["file"]=>
    string(42) "/home/5ae62f6794b195f5dfeff893639bead9.php"
    ["line"]=>
    int(10)
    ["function"]=>
    string(11) "Department1"
    ["args"]=>
    array(0) {
    }
  }
  [1]=>
  array(4) {
    ["file"]=>
    string(42) "/home/5ae62f6794b195f5dfeff893639bead9.php"
    ["line"]=>
    int(15)
    ["function"]=>
    string(11) "Department2"
    ["args"]=>
    array(0) {
    }
  }
}

参考: https://www. PHP.net/manual/en/reflectiongenerator.gettrace。 PHP