ReflectionProperty::hasType
(PHP 7 >= 7.4.0, PHP 8)
ReflectionProperty::hasType — Checks if property has a type
Beschreibung
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
- ReflectionProperty::getType() - Gets a property's type
- ReflectionProperty::isInitialized() - Checks whether a property is initialized