📜  PHP |反射参数 getType()函数

📅  最后修改于: 2022-05-13 01:56:27.009000             🧑  作者: Mango

PHP |反射参数 getType()函数

ReflectionParameter::getType()函数是PHP中的一个内置函数,用于返回指定参数的类型。

句法:

ReflectionType ReflectionParameter::getType ( void )

参数:此函数不接受任何参数。

返回值:该函数返回指定参数的类型。

下面的程序说明了PHP中的 ReflectionParameter::getType()函数:

方案一:

getType();
   
// Getting the type of the specified parameter.
echo $B;
?>

输出:

int

方案二:

getType();
echo "\n";
echo $B->getType();
echo "\n";
echo $C->getType();
?>
输出:
float
Exception
string

参考: https://secure。 PHP.net/manual/en/reflectionparameter.gettype。 PHP