|
ReflectionFunction::invokeArgsInvokes function args Beschreibung
public mixed ReflectionFunction::invokeArgs
( array
$args
)Invokes the function and pass its arguments as array. Parameter-Liste
RückgabewerteReturns the result of the invoked function Beispiele
Beispiel #1 ReflectionFunction::invokeArgs example
<?phpDas oben gezeigte Beispiel erzeugt folgende Ausgabe: Dr. Phil
Beispiel #2 ReflectionFunction::invokeArgs with references example
<?phpDas oben gezeigte Beispiel erzeugt folgende Ausgabe:
array(2) {
[0]=>
bool(false)
[1]=>
int(0)
}
Anmerkungen
Siehe auch
|