ReflectionMethod::getPrototype

ReflectionMethod::getPrototype

(PHP 5, PHP 7)

ReflectionMethod::getPrototypeGets the method prototype (if there is one).

Description

public ReflectionMethod ReflectionMethod::getPrototype ( void )

Returns the methods prototype.

Parameters

This function has no parameters.

Return Values

A ReflectionMethod instance of the method prototype.

Errors/Exceptions

A ReflectionException exception is thrown if the method does not have a prototype.

Examples

Example #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());
?>

The above example will output:

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

See Also

© 1997–2017 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://secure.php.net/manual/en/reflectionmethod.getprototype.php

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部