ReflectionFunctionAbstract::hasTentativeReturnType

(PHP 8 >= 8.1.0)

ReflectionFunctionAbstract::hasTentativeReturnType返回函数是否具有暂定返回类型

说明

public ReflectionFunctionAbstract::hasTentativeReturnType(): bool

返回函数是否具有暂定返回类型。

参数

此函数没有参数。

返回值

如果函数具有暂定返回类型,则返回 true,否则返回 false

范例

范例 #1 ReflectionFunctionAbstract::hasTentativeReturnType() 范例

<?php

$method
= new ReflectionMethod(\ArrayAccess::class, 'offsetGet');
var_dump($method->hasTentativeReturnType());

上面的例子将输出

bool(true)

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top