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)
ReflectionParameter::allowsNull
(PHP 5)
ReflectionParameter::allowsNull — null を許可するかどうかを調べる
説明
public bool ReflectionParameter::allowsNull
( void
)
パラメータが NULL を許可するかどうかを調べます。
警告
この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。
パラメータ
この関数にはパラメータはありません。
返り値
NULL を許可する場合に TRUE、それ以外の場合に FALSE を返します。
jeroen at asystance dot nl
10-Aug-2010 11:56
