|
update : 2015.11.03
php.shukuma.com검색:
|
ReflectionGenerator::getTrace(PHP 7) ReflectionGenerator::getTrace — Gets the trace of the executing generator 설명
public array ReflectionGenerator::getTrace
([ int
$options = DEBUG_BACKTRACE_PROVIDE_OBJECT
] )Get the trace of the currently executing generator. 인수
반환값Returns the trace of the currently executing generator. 예제
Example #1 ReflectionGenerator::getTrace() example
<?php위 예제의 출력 예시:
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) {
}
}
}
참고
|