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