(PHP 5)
ReflectionParameter::allowsNull — Checks if null is allowed
Checks whether the parameter allows NULL.
Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.
Diese Funktion hat keine Parameter.
TRUE if NULL is allowed, otherwise FALSE
It seems this always returns true for user-defined functions. Consider
function f1 ( $var1 = null, $var2, $var3 = false ) {}
ReflectionMethod reports these all as nullable (and only the 3rd as optional - weird)