PHP | Función de reflexión Función __toString()

La función ReflectionFunction::__toString() es una función incorporada en PHP que se utiliza para devolver la representación de string de la función especificada.
Sintaxis: 
 

string ReflectionFunction::__toString( void )

Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve la representación de string de la función especificada.
Los siguientes programas ilustran la función ReflectionFunction::__toString() en PHP:
Programa 1: 
 

php

<?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 __toString() function
$A = $function->__toString();
 
// Getting the string representation of the
// above specified function
echo $A;
?>
Producción: 

Function [ <user> function Company ] {
  @@ /home/a39c30763ecfc7f257d02e44de746b22.php 4 - 7

  - Parameters [2] {
    Parameter #0 [ <required> $Company_Name ]
    Parameter #1 [ <required> $Role ]
  }
}

 

Programa 2: 
 

php

<?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 __toString() function and
// Getting string representation of the
// above specified function
echo $function->__toString();
echo $function->__toString();
?>
Producción: 

Function [ <user> function Trial2 ] {
  @@ /home/09f598906ca0bfcad4613b5dea41c27b.php 9 - 12

  - Parameters [2] {
    Parameter #0 [ <required> $First_Args ]
    Parameter #1 [ <required> $Second_Args ]
  }
}
Function [ <user> function Trial2 ] {
  @@ /home/09f598906ca0bfcad4613b5dea41c27b.php 9 - 12

  - Parameters [2] {
    Parameter #0 [ <required> $First_Args ]
    Parameter #1 [ <required> $Second_Args ]
  }
}

 

Referencia: https://www.php.net/manual/en/reflectionfunction.tostring.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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *