PHP 8.5.0 Beta 2 available for testing

ReflectionExtension::__construct

(PHP 5, PHP 7, PHP 8)

ReflectionExtension::__constructConstructs a ReflectionExtension

Description

public ReflectionExtension::__construct(string $name)

Construct a ReflectionExtension object .

Parameters

name

Name of the extension.

Errors/Exceptions

Throws ReflectionException if the extension to reflect does not exist.

Examples

Example #1 ReflectionExtension example

<?php
$ext
= new ReflectionExtension('Reflection');

printf('Extension: %s (version: %s)', $ext->getName(), $ext->getVersion());
?>

The above example will output something similar to:

Extension: Reflection (version: 8.3.17)

See Also

Found A Problem?

Learn How To Improve This PageSubmit a Pull RequestReport a Bug
+add a note

User Contributed Notes

There are no user contributed notes for this page.

AltStyle によって変換されたページ (->オリジナル) /