ReflectionType 类

(PHP 7, PHP 8)

简介

ReflectionType 类用于获取函数、类方法的参数或者返回值的类型。 反射扩展声明了以下子类型:

类摘要

abstract ReflectionType {
/* 方法 */
public allowsNull ( ) : bool
public __toString ( ) : string
}

更新日志

版本 说明
8.0.0 ReflectionType 修改为了抽象类,并且 ReflectionType::isBuiltin() 被移动到了 ReflectionNamedType::isBuiltin()

Table of Contents

User Contributed Notes

Ondej Mirtes 27-Sep-2020 06:53
Method ReflectionType::getName() does not exist. This may have been virtually true in the past but not anymore. It exists on ReflectionNamedType which used to be the only child class of ReflectionType. So you could have kind of relied on that.

But in PHP 8 there's also ReflectionUnionType which doesn't have the getName() method. So in order to support PHP 8, you need to support both ReflectionNamedType and ReflectionUnionType.
benjamin dot morel at gmail dot com 18-Sep-2020 09:03
Known subclasses:

- ReflectionNamedType
- ReflectionUnionType
roland at mxchange dot org 11-Mar-2020 09:13
I guess it is <?php ReflectionNamedType::getName(); ?> ?
1franck 28-Jan-2020 08:59
For those who stumble on notice about ReflectionType::__toString() beeing deprecated, use method ReflectionType::getName() instead which is not yet documented.
PHP8中文手册 站长在线 整理 版权归PHP文档组所有