La función ReflectionFunction::invoke() 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::invoke( mixed $args)
Parámetros: esta función acepta el parámetro $args que contiene la lista de argumentos pasados 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::invoke() 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 invoke() function $A = $function->invoke('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 invoke() function and getting the // result of the invoked function company echo $function->invoke('a+a', '= 2a'); echo $function->invoke('a*a', '= a^2'); ?>
Producción:
a+a = 2a a*a = a^2
Referencia: https://www.php.net/manual/en/reflectionfunction.invoke.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