ReflectionType
PHP Manual

ReflectionType::allowsNull

(PHP 7)

ReflectionType::allowsNullChecks if null is allowed

Descrição

public bool ReflectionType::allowsNull ( void )

Checks whether the parameter allows NULL.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

TRUE if NULL is allowed, otherwise FALSE

Exemplos

Exemplo #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());

O exemplo acima irá imprimir algo similar à:

bool(false)
bool(true)

Veja Também


ReflectionType
PHP Manual