|
ReflectionGenerator::getTraceGets the trace of the executing generator Beschreibung
public array ReflectionGenerator::getTrace
([ int
$options = DEBUG_BACKTRACE_PROVIDE_OBJECT
] )Get the trace of the currently executing generator. Parameter-Liste
RückgabewerteReturns the trace of the currently executing generator. Beispiele
Beispiel #1 ReflectionGenerator::getTrace example
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
array(2) {
[0]=>
array(4) {
["file"]=>
string(18) "example.php"
["line"]=>
int(8)
["function"]=>
string(3) "foo"
["args"]=>
array(0) {
}
}
[1]=>
array(4) {
["file"]=>
string(18) "example.php"
["line"]=>
int(12)
["function"]=>
string(3) "bar"
["args"]=>
array(0) {
}
}
}
Siehe auch
|