update page now
PHP 8.1.34 Released!

ReflectionMethod::hasPrototype

(PHP 8 >= 8.2.0)

ReflectionMethod::hasPrototypeReturns whether a method has a prototype

Descrizione

public ReflectionMethod::hasPrototype(): bool

Returns whether a method has a prototype.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

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

Esempi

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

Il precedente esempio visualizzerà:

bool(true)

Vedere anche:

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant