ReflectionParameter
PHP Manual

ReflectionParameter::hasType

(PHP 7)

ReflectionParameter::hasTypeChecks if parameter has a type

Description

public bool ReflectionParameter::hasType ( void )

Checks if the parameter has a type associated with it.

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

TRUE if a type is specified, FALSE otherwise.

Exemples

Exemple #1 ReflectionParameter::hasType() example

<?php
function someFunction(string $param$param2 null) {}

$reflectionFunc = new ReflectionFunction('someFunction');
$reflectionParams $reflectionFunc->getParameters();

var_dump($reflectionParams[0]->hasType());
var_dump($reflectionParams[1]->hasType());

L'exemple ci-dessus va afficher quelque chose de similaire à :

bool(true)
bool(false)

Voir aussi


ReflectionParameter
PHP Manual