La función ReflectionMethod::invokeArgs() es una función incorporada en PHP que se usa para invocar el método reflejado especificado y devuelve el resultado del método.
Sintaxis:
mixed ReflectionMethod::invokeArgs ( $object, $parameter )
Parámetros: esta función acepta dos parámetros, como se mencionó anteriormente y se describe a continuación:
- objeto: Este es el objeto de clase inicializado.
- parámetro: Esta es la array de cero o más parámetros que se pasarán al método.
Valor de retorno: esta función devuelve el resultado del método invocado.
Los siguientes programas ilustran la función ReflectionMethod::invokeArgs() en PHP:
Programa 1:
php
<?php // Initializing a user-defined class class Company { public function GFG($name) { return 'GeeksforGeeks' . $name; } } // Using ReflectionMethod() over the class Company $A = new ReflectionMethod('Company', 'GFG'); // Calling the invokeArgs() function $B = $A->invokeArgs(new Company(), array(' is a Computer Science Portal.')); // Getting the result of the invoked method. echo $B; ?>
Producción:
GeeksforGeeks is a Computer Science Portal.
Programa 2:
php
<?php // Initializing some user-defined classes class Department1 { public function hr($name) { return 'HR' . $name; } } class Department2 { public function coding($name) { return 'Coding' . $name; } } class Department3 { public function marketing($name) { return 'Marketing' . $name; } } // Using ReflectionMethod() over the above classes $A = new ReflectionMethod('Department1', 'hR'); $B = new ReflectionMethod('Department2', 'coding'); $C = new ReflectionMethod('Department3', 'marketing'); // Calling the invokeArgs() function and // getting the result of the invoked method. echo $A->invokeArgs(new Department1(), array(' is a Department.')); echo "\n"; echo $B->invokeArgs(new Department2(), array(' is also a Department.')); echo "\n"; echo $C->invokeArgs(new Department3(), array(' too.')); ?>
Producción:
HR is a Department. Coding is also a Department. Marketing too.
Referencia: https://www.php.net/manual/en/reflectionmethod.invokeargs.php
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA