ReflectionParameter
在线手册:中文 英文
PHP手册

ReflectionParameter::allowsNull

(PHP 5)

ReflectionParameter::allowsNullChecks if null is allowed

说明

public bool ReflectionParameter::allowsNull ( void )

Checks whether the parameter allows NULL.

Warning

本函数还未编写文档,仅有参数列表。

参数

此函数没有参数。

返回值

TRUE if NULL is allowed, otherwise FALSE

参见


ReflectionParameter
在线手册:中文 英文
PHP手册
PHP手册 - N: Checks if null is allowed

用户评论:

jeroen at asystance dot nl (10-Aug-2010 10:56)

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)