ReflectionNamedType::getName

(PHP 7 >= 7.1.0, PHP 8)

ReflectionNamedType::getNameObtém o nome do tipo como uma string

Descrição

public ReflectionNamedType::getName(): string

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Retorna o nome do tipo que está sendo refletido.

Veja Também

adicione uma nota

Notas Enviadas por Usuários (em inglês) 1 note

up
3
baptiste at pillot dot fr
1 year ago
Possible values for type names are:

- The name of a class, interface, or trait,
- The name of any built-in type (php 8.2): array, bool, callable, float, int, null, object, string, false, iterable, mixed, never, true, void,
- The name of any relative class type: parent, self, static.
To Top