ReflectionNamedType::getName

(PHP 7 >= 7.1.0, PHP 8)

ReflectionNamedType::getName获取类型名称作为字符串

描述

public ReflectionNamedType::getName(): string

参数

此函数没有参数。

返回值

返回被反射类型的名称。

参见

添加备注

用户贡献的注释 1 个注释

baptiste at pillot dot fr
11 个月前
类型名称的可能值是

- 类、接口或特性的名称,
- 任何内置类型的名称 (php 8.2):array、bool、callable、float、int、null、object、string、false、iterable、mixed、never、true、void,
- 任何相对类类型的名称:parent、self、static。
To Top