La función ReflectionMethod::__toString() es una función incorporada en PHP que se utiliza para devolver la representación de string del objeto de método especificado.
Sintaxis:
string ReflectionMethod::__toString ( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve la representación de string del objeto de método especificado.
Los siguientes programas ilustran la función ReflectionMethod::__toString() en PHP:
Programa 1:
<?php // Initializing a user-defined class class Company { function GFG() {} } // Using ReflectionMethod() over the class Company $A = new ReflectionMethod('Company', 'GFG'); // Calling the __toString() function $B = $A->__toString(); // Getting the string representation of // the specified method object 'GFG' var_dump($B); ?>
Producción:
string(94) "Method [ <user> public method GFG ] { @@ /home/43d46426def0fce620e2e2cf2bf10e7a.php 6 - 6 } "
Programa 2:
<?php // Initializing some user-defined classes class Department1 { private function hr($name) { return 'HR' . $name; } } class Department2 { static function Coding() {} } class Department3 { protected function marketing(){} } // Using ReflectionMethod() over the above classes $A = new ReflectionMethod('Department1', 'hR'); $B = new ReflectionMethod('Department2', 'Coding'); $C = new ReflectionMethod('Department3', 'marketing'); // Calling the __toString() function and // getting the string representation of the // above method objects var_dump($A->__toString()); var_dump($B->__toString()); var_dump($C->__toString()); ?>
Producción:
string(158) "Method [ <user> private method hr ] { @@ /home/2aa9608c9056b85288d53e96d9de3310.php 6 - 8 - Parameters [1] { Parameter #0 [ <required> $name ] } } " string(106) "Method [ <user> static public method Coding ] { @@ /home/2aa9608c9056b85288d53e96d9de3310.php 12 - 12 } " string(105) "Method [ <user> protected method marketing ] { @@ /home/2aa9608c9056b85288d53e96d9de3310.php 17 - 17 } "
Referencia: https://www.php.net/manual/en/reflectionmethod.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