La función ReflectionFunction::export() es una función incorporada en PHP que se utiliza para devolver la exportación como una string si el parámetro de devolución se establece en TRUE; de lo contrario, se devuelve NULL.
Sintaxis:
string ReflectionFunction::export( string $name, string $return )
Parámetros: esta función acepta dos parámetros, como se mencionó anteriormente y se describe a continuación:
- $name: Es la función especificada que se va a exportar.
- $retorno: Es el valor booleano ya sea VERDADERO o FALSO. Si su valor se establece en True, exportará y si su valor se establece en false, devolverá NULL. Falso es el valor predeterminado.
Valor de retorno: esta función devuelve la exportación como una string si el parámetro de retorno se establece en VERDADERO; de lo contrario, se devuelve NULL.
Los siguientes programas ilustran la función ReflectionFunction::export() 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 export() function $A = $function->export(Company, $return = TRUE); // Getting the export as a string echo $A; ?>
Producción:
Function [ <user> function Company ] { @@ /home/b38c7d194c961e6b0d1d5b1c6e582d19.php 4 - 7 - Parameters [2] { Parameter #0 [ <required> $Company_Name ] Parameter #1 [ <required> $Role ] } }
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 $function1 = new ReflectionFunction('Trial1'); $function2 = new ReflectionFunction('Trial2'); // Calling the export() function and // Getting the export as a string echo $function1->export(Trial1, $return = TRUE); echo $function2->export(Trial2, $return = FALSE); ?>
Function [ <user> function Trial1 ] { @@ /home/2410abe3ca2b5235249f9a0c9ba035b4.php 4 - 7 - Parameters [2] { Parameter #0 [ <required> $First_Args ] Parameter #1 [ <required> $Second_Args ] } } Function [ <user> function Trial2 ] { @@ /home/2410abe3ca2b5235249f9a0c9ba035b4.php 9 - 12 - Parameters [2] { Parameter #0 [ <required> $First_Args ] Parameter #1 [ <required> $Second_Args ] } }
Referencia: https://www.php.net/manual/en/reflectionfunction.export.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