(PHP 8 >= 8.1.0)
ReflectionFunctionAbstract::hasTentativeReturnType — 返回函数是否具有暂定返回类型
此函数没有参数。
范例 #1 ReflectionFunctionAbstract::hasTentativeReturnType() 范例
<?php
$method = new ReflectionMethod(\ArrayAccess::class, 'offsetGet');
var_dump($method->hasTentativeReturnType());
上面的例子将输出
bool(true)