(PHP 7, PHP 8)
ReflectionFunctionAbstract::hasReturnType — 检查函数是否具有指定的返回类型
此函数没有参数。
示例 #1 ReflectionFunctionAbstract::hasReturnType() 示例
<?php
function to_int($param) : int {
return (int) $param;
}
$reflection1 = new ReflectionFunction('to_int');
var_dump($reflection1->hasReturnType());
上面的示例将输出
bool(true)
示例 #2 在内置函数上的用法
<?php
$reflection2 = new ReflectionFunction('array_merge');
var_dump($reflection2->hasReturnType());
上面的示例将输出
bool(false)
这是因为许多内部函数没有为其参数或返回值指定类型。因此,最好避免在内置函数上使用此方法。