略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: ReflectionMethod::getPrototype

2024-04-28

ReflectionMethod::getPrototype

(PHP 5 >= 5.1.2, PHP 7, PHP 8)

ReflectionMethod::getPrototype返回方法原型 (如果存在)

说明

public ReflectionMethod::getPrototype(): ReflectionMethod

返回方法原型

参数

此函数没有参数。

返回值

方法原型的一个 ReflectionMethod 实例

错误/异常

如果方法没有原型,产生一个 ReflectionException

范例

示例 #1 ReflectionMethod::getPrototype() example

<?php
class Hello {

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

}
class 
HelloWorld extends Hello {

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

}

$reflectionMethod = new ReflectionMethod('HelloWorld''sayHelloTo');
var_dump($reflectionMethod->getPrototype());
?>

以上例程会输出:

object(ReflectionMethod)#2 (2) {
  ["name"]=>
  string(10) "sayHelloTo"
  ["class"]=>
  string(5) "Hello"
}

参见

add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/reflectionmethod.getprototype.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3