ReflectionProperty::hasType

(PHP 7 >= 7.4.0, PHP 8)

ReflectionProperty::hasTypeChecks if property has a type

Beschreibung

public ReflectionProperty::hasType(): bool

Checks if the property has a type associated with it.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

true if a type is specified, false otherwise.

Beispiele

Beispiel #1 ReflectionProperty::hasType() example

<?php
class User
{
public
string $name;
}

$rp = new ReflectionProperty('User', 'name');
var_dump($rp->hasType());
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

bool(true)

Siehe auch

add a note add a note

User Contributed Notes

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