ReflectionMethod::__toString

(PHP 5, PHP 7)

ReflectionMethod::__toString���ط��䷽��������ַ������

˵��

public ReflectionMethod::__toString ( void ) : string

���ط��䷽��������ַ������

����

�˺���û�в�����

����ֵ

ReflectionMethod ʵ�����ַ�����Ҳ�����ַ���

����

Example #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 ]
  }
}

�μ�