ReflectionType
PHP Manual

ReflectionType::allowsNull

(PHP 7)

ReflectionType::allowsNullChecks if null is allowed

Beschreibung

public bool ReflectionType::allowsNull ( void )

Checks whether the parameter allows NULL.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

TRUE if NULL is allowed, otherwise FALSE

Beispiele

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

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

bool(false)
bool(true)

Siehe auch


ReflectionType
PHP Manual