ReflectionMethod::__toString

(PHP 5)

ReflectionMethod::__toStringReturns the string representation of the Reflection method object.

Описание

public string ReflectionMethod::__toString ( void )

Returns the string representation of the Reflection method object.

Список параметров

У этой функции нет параметров.

Возвращаемые значения

A string representation of this ReflectionMethod instance.

Примеры

Пример #1 ReflectionMethod::__toString() example

<?php
class HelloWorld {

    public function 
sayHelloTo($name) {
        return 
'Hello ' $name;
    }

}

$reflectionMethod = new ReflectionMethod(new HelloWorld(), 'sayHelloTo');
echo 
$reflectionMethod;
?>

Результат выполнения данного примера:

Method [ <user> public method sayHelloTo ] {
  @@ /var/www/examples/reflection.php 16 - 18

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

Смотрите также


Участник рейтинга Тэглайн 2010