ReflectionFunction
PHP Manual

ReflectionFunction::__toString

(PHP 5)

ReflectionFunction::__toStringTo string

Descripción

public string ReflectionFunction::__toString ( void )

To string.

Parámetros

Esta función no tiene parámetros.

Valores devueltos

Returns ReflectionFunction::export()-like output for the function.

Ejemplos

Example #1 ReflectionFunction::__toString() example

<?php
function title($title$name)
{
    return 
sprintf("%s. %s\r\n"$title$name);
}

echo new 
ReflectionFunction('title');
?>

El resultado del ejemplo sería algo similar a:

Function [ <user> function person ] {
  @@ Command line code 1 - 1

  - Parameters [2] {
    Parameter #0 [ <required> $prefix ]
    Parameter #1 [ <required> $name ]
  }
}

Ver también


ReflectionFunction
PHP Manual