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

ReflectionFunctionAbstract::getTentativeReturnType

(PHP 8 >= 8.1.0)

ReflectionFunctionAbstract::getTentativeReturnTypeReturns the tentative return type associated with the function

说明

public ReflectionFunctionAbstract::getTentativeReturnType(): ?ReflectionType

Returns the tentative return type associated with the function.

参数

此函数没有参数。

返回值

Returns a ReflectionType object if a tentative return type is specified, null otherwise.

范例

示例 #1 ReflectionFunctionAbstract::getTentativeReturnType() example

<?php

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

以上例程的输出类似于:

object(ReflectionNamedType)#2 (0) {
}

参见

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