ReflectionMethod::hasPrototype

Returns whether a method has a prototype

Description

public bool ReflectionMethod::hasPrototype()

Returns whether a method has a prototype.

Parameters

This function has no parameters.

Return Values

Returns true if the method has a prototype, otherwise false.

Examples

Example #1 ReflectionMethod::hasPrototype 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->hasPrototype());
?>

The above example will output:

bool(true)

See Also

  • ReflectionMethod::getPrototype