ReflectionFunction::__toString

(PHP 5)

ReflectionFunction::__toStringTo string

Опис

public string ReflectionFunction::__toString ( void )

To string.

Параметри

В цієї функції немає параметрів.

Значення, що повертаються

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

Приклади

Приклад #1 ReflectionFunction::__toString() example

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

echo new 
ReflectionFunction('title');
?>

Наведений вище приклад виведе щось подібне до:

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

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

Прогляньте Також

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top