update : 2015.11.03
php.shukuma.com

검색:
 
 
Invokes function

ReflectionFunction::invoke

(PHP 5)

ReflectionFunction::invokeInvokes function

설명

public mixed ReflectionFunction::invoke ([ mixed $parameter [, mixed $... ]] )

Invokes a reflected function.

인수

args

The passed in argument list. It accepts a variable number of arguments which are passed to the function much like call_user_func() is.

반환값

Returns the result of the invoked function call.

예제

Example #1 ReflectionFunction::invoke() example

<?php
function title($title$name)
{
    return 
sprintf("%s. %s\r\n"$title$name);
}

$function = new ReflectionFunction('title');

echo 
$function->invoke('Dr''Phil');
?>

위 예제의 출력:

Dr. Phil

주의

Note:

함수가 인수로 참조를 필요로 하면, 주어진 인수 목록에도 참조여야 합니다.

참고