|
update : 2015.11.03
php.shukuma.com검색:
|
ReflectionFunction::invokeArgs(PHP 5 >= 5.1.0) ReflectionFunction::invokeArgs — Invokes function args 설명Invokes the function and pass its arguments as array. 반환값Returns the result of the invoked function 예제
Example #1 ReflectionFunction::invokeArgs() example
<?php위 예제의 출력: Dr. Phil
Example #2 ReflectionFunction::invokeArgs() with references example
<?php위 예제의 출력:
array(2) {
[0]=>
bool(false)
[1]=>
int(0)
}
주의
참고
|