哈希空间 Ctrl + F 进行搜索
首页 php手册中文版 CSS中文手册 哈希文档 Markdown在线工具

ReflectionFunctionAbstract::hasTentativeReturnType

(PHP 8 >= 8.1.0)

ReflectionFunctionAbstract::hasTentativeReturnTypeReturns whether the function has a tentative return type

说明

public ReflectionFunctionAbstract::hasTentativeReturnType(): bool

Returns whether the function has a tentative return type.

参数

此函数没有参数。

返回值

Returns true if the function has a tentative return type, otherwise false.

范例

示例 #1 ReflectionFunctionAbstract::hasTentativeReturnType() example

<?php

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

以上例程会输出:

bool(true)

参见

打开 哈希空间 微信小程序中查看更佳