ReflectionMethod::invokeArgs

(PHP 5 >= 5.1.2, PHP 7, PHP 8)

ReflectionMethod::invokeArgsInvoke args

Beschreibung

public ReflectionMethod::invokeArgs(?object $object, array $args): mixed

Invokes the reflected method and pass its arguments as array.

Parameter-Liste

object

The object to invoke the method on. In case of static methods, you can pass null to this parameter.

args

The parameters to be passed to the function, as an array.

Rückgabewerte

Returns the method result.

Fehler/Exceptions

A ReflectionException if the object parameter does not contain an instance of the class that this method was declared in.

A ReflectionException if the method invocation failed.

Beispiele

Beispiel #1 ReflectionMethod::invokeArgs() example

<?php
class HelloWorld {

    public function 
sayHelloTo($name) {
        return 
'Hello ' $name;
    }

}

$reflectionMethod = new ReflectionMethod('HelloWorld''sayHelloTo');
echo 
$reflectionMethod->invokeArgs(new HelloWorld(), array('Mike'));
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

Hello Mike

Anmerkungen

Hinweis:

Wenn die Funktion einige Argumente per Referenz akzeptiert, so müssen diese als Referenzen in die Argument-Liste gegeben werden.

Siehe auch

Hier Kannst Du einen Kommentar verfassen


Bitte gib mindestens 10 Zeichen ein.
Wird geladen... Bitte warte.
* Pflichtangabe
Es sind noch keine Kommentare vorhanden.

PHP cURL-Tutorial: Verwendung von cURL zum Durchführen von HTTP-Anfragen

cURL ist eine leistungsstarke PHP-Erweiterung, die es Ihnen ermöglicht, mit verschiedenen Servern über verschiedene Protokolle wie HTTP, HTTPS, FTP und mehr zu kommunizieren. ...

TheMax

Autor : TheMax
Kategorie: PHP-Tutorials

Midjourney Tutorial - Anleitung für Anfänger

Über Midjourney, dem Tool zur Erstellung digitaler Bilder mithilfe von künstlicher Intelligenz, gibt es ein informatives Video mit dem Titel "Midjourney Tutorial auf Deutsch - Anleitung für Anfänger" ...

Mike94

Autor : Mike94
Kategorie: KI Tutorials

Grundlagen von Views in MySQL

Views in einer MySQL-Datenbank bieten die Möglichkeit, eine virtuelle Tabelle basierend auf dem Ergebnis einer SQL-Abfrage zu erstellen. ...

admin

Autor : admin
Kategorie: mySQL-Tutorials

Tutorial veröffentlichen

Tutorial veröffentlichen

Teile Dein Wissen mit anderen Entwicklern weltweit

Du bist Profi in deinem Bereich und möchtest dein Wissen teilen, dann melde dich jetzt an und teile es mit unserer PHP-Community

mehr erfahren

Tutorial veröffentlichen

Eingabe in einer Datenbank

Note, First Name, Last Name, and Last Modified. There are columns and a corresponding output that works. Not even the input. Why? Did I miss this ...

Geschrieben von tridentlemon am 10.01.2025 09:59:33
Forum: SQL / Datenbanken
Kalenderwoche auf Sonntag anfangen lassen

To start the calendar week on Sunday, you can adjust the $Woche calculation by subtracting 1 from the day of the week before determining the ISO w ...

Geschrieben von laurennjames10 am 09.01.2025 05:29:15
Forum: PHP Developer Forum
Wer kennt sich mit Selenium aus oder hat zufällig ein geeignetes Script?

That's a complex task, and using Selenium with a cron job on your local machine to process a large number of URLs might not be the most efficient ...

Geschrieben von moleculegel am 07.01.2025 05:27:01
Forum: PHP Developer Forum
Einträge die älter als 24h sind in der PostgreSQL Datenbank löschen

Stelle mal deine Frage bei ChatGPT, da bekommst du bestimmt eine Lösung. UNGLAUBLICH! Das hat funktioniert. Eine Genaue Anforderung "UseCase" sc ...

Geschrieben von sharbich am 06.01.2025 23:33:29
Forum: SQL / Datenbanken