PHP |反射参数 hasType()函数
ReflectionParameter::hasType()函数是PHP中的一个内置函数,用于在指定类型时返回 TRUE,否则返回 FALSE。
句法:
bool ReflectionParameter::hasType ( void )
参数:此函数不接受任何参数。
返回值:如果指定了类型,此函数返回 TRUE,否则返回 FALSE。
下面的程序说明了PHP中的ReflectionParameter::hasType()函数:
方案一:
hasType();
// Getting TRUE if a type is specified,
// FALSE otherwise.
var_dump($B);
?>
输出:
bool(true)
方案二:
hasType());
var_dump($B->hasType());
var_dump($C->hasType());
?>
输出:
bool(true)
bool(false)
bool(true)
参考: https://www. PHP.net/manual/en/reflectionparameter.hastype。 PHP