ReflectionProperty::hasType

(PHP 7 >= 7.4.0, PHP 8)

ReflectionProperty::hasTypeVérifie si la propriété à un type

Description

public ReflectionProperty::hasType(): bool

Vérifie si la propriété à un type associé avec.

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

true si un type est spécifié, false sinon.

Exemples

Exemple #1 Exemple de ReflectionProperty::hasType()

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

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

L'exemple ci-dessus va afficher :

bool(true)

Voir aussi

add a note add a note

User Contributed Notes

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