(PHP 7, PHP 8)
ReflectionFunctionAbstract::getReturnType — 获取函数的指定返回类型
此函数没有参数。
如果指定了返回类型,则返回一个 ReflectionType 对象,否则返回 null
。
示例 #1 ReflectionFunctionAbstract::getReturnType() 示例
<?php
function to_int($param) : int {
return (int) $param;
}
$reflection1 = new ReflectionFunction('to_int');
echo $reflection1->getReturnType();
以上示例将输出
int
示例 #2 在内置函数上的用法
<?php
$reflection2 = new ReflectionFunction('array_merge');
var_dump($reflection2->getReturnType());
以上示例将输出
null
这是因为许多内部函数没有为其参数或返回值指定类型。因此,最好避免在内置函数上使用此方法。