ReflectionType
PHP Manual

ReflectionType::allowsNull

(PHP 7)

ReflectionType::allowsNullChecks if null is allowed

Description

public bool ReflectionType::allowsNull ( void )

Checks whether the parameter allows NULL.

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

TRUE if NULL is allowed, otherwise FALSE

Exemples

Exemple #1 ReflectionType::allowsNull() example

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

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

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

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

bool(false)
bool(true)

Voir aussi


ReflectionType
PHP Manual