CakeFest 2024: The Official CakePHP Conference

Класс ReflectionType

(PHP 7, PHP 8)

Введение

Класс ReflectionType сообщает информацию о типе параметра/возвращаемого значения функции или типе свойства класса. Модуль Reflection объявляет следующие подтипы:

Обзор классов

abstract class ReflectionType implements Stringable {
/* Методы */
public allowsNull(): bool
public __toString(): string
}

Список изменений

Версия Описание
8.0.0 ReflectionType стал абстрактным, а метод ReflectionType::isBuiltin() был перемещён в ReflectionNamedType::isBuiltin().

Содержание

add a note

User Contributed Notes 4 notes

up
40
1franck
4 years ago
For those who stumble on notice about ReflectionType::__toString() beeing deprecated, use method ReflectionType::getName() instead which is not yet documented.
up
15
Ondej Mirtes
3 years ago
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.
up
3
benjamin dot morel at gmail dot com
3 years ago
Known subclasses:

- ReflectionNamedType
- ReflectionUnionType
up
1
roland at mxchange dot org
4 years ago
I guess it is <?php ReflectionNamedType::getName(); ?> ?
To Top