No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher une fonction PHP

ReflectionFunction::invoke

(PHP 5, PHP 7)

ReflectionFunction::invokeInvokes function

Description

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

Invokes a reflected function.

PHP: ReflectionFunction::invoke - Manual Home of Manuel PHP  Contents Haut

Parameters

...

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

PHP: ReflectionFunction::invoke - Manual Home of Manuel PHP  Contents Haut

Return Values

Returns the result of the invoked function call.

PHP: ReflectionFunction::invoke - Manual Home of Manuel PHP  Contents Haut

Examples

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');
?>

The above example will output:

Dr. Phil

PHP: ReflectionFunction::invoke - Manual Home of Manuel PHP  Contents Haut

Notes

Note:

If the function has arguments that need to be references, then they must be references in the passed argument list.

PHP: ReflectionFunction::invoke - Manual Home of Manuel PHP  Contents Haut

See Also

Find a PHP function
Error Infobrol

Can not display this page of the Infobrol website

Type of error (18-01)

Unknown format specifier "&"

Please try again in a few minutes…

Return to the home page




Steph