La función ReflectionFunction::invokeArgs() es una función incorporada en PHP que se utiliza para devolver el resultado de la llamada a la función invocada.
Sintaxis:
mixed ReflectionFunction::invokeArgs( array $args )
Parámetros: esta función acepta un solo parámetro $args que contiene la array de argumentos que se pasan a la función llamada.
Valor devuelto: esta función devuelve el resultado de la llamada de función invocada.
Los siguientes programas ilustran la función ReflectionFunction::invokeArgs() en PHP:
Programa 1:
<?php // Initializing a user-defined function function Company($Company_Name, $Role) { return sprintf("%s %s\r\n", $Company_Name, $Role); } // Using ReflectionFunction() over the specified // function company $function = new ReflectionFunction('company'); // Calling the invokeArgs() function $A = $function->invokeArgs(array('GeeksforGeeks', 'is a Computer Science Portal.')); // Getting the result of the invoked // function company echo $A; ?>
Producción:
GeeksforGeeks is a Computer Science Portal.
Programa_2:
<?php // Initializing some user-defined functions function Trial1($First_Args, $Second_Args) { return sprintf("%s %s\r\n", $First_Args, $Second_Args); } function Trial2($First_Args, $Second_Args) { return sprintf("%s %s\r\n", $First_Args, $Second_Args); } // Using ReflectionFunction() over the above // specified functions $function = new ReflectionFunction('Trial1'); $function = new ReflectionFunction('Trial2'); // Calling the invokeArgs() function and the // result of the invoked function company echo $function->invokeArgs(array('a+a', '= 2a')); echo $function->invokeArgs(array('a*a', '= a^2')); ?>
Producción:
a+a = 2a a*a = a^2
Referencia: https://www.php.net/manual/en/reflectionfunction.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