The ReflectionGenerator class

(PHP 7, PHP 8)

Introduction

The ReflectionGenerator class reports information about a generator.

Class synopsis

final class ReflectionGenerator {
/* Methods */
public function __construct(Generator $generator)
public function getExecutingFile(): string
public function getExecutingGenerator(): Generator
public function getExecutingLine(): int
public function getThis(): ?object
public function getTrace(int $options = DEBUG_BACKTRACE_PROVIDE_OBJECT): array
public function isClosed(): bool
}

Changelog

Version Description
8.0.0 The class is final now.

Table of Contents

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top