PHP 8.4.2 Released!

ReflectionConstant::getExtensionName

(PHP 8 >= 8.5.0)

ReflectionConstant::getExtensionNameGets name of the defining extension

Descrição

public ReflectionConstant::getExtensionName(): string|false

Gets the name of the extension which defined the constant.

Parâmetros

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

Valor Retornado

The name of the extension which defined the constant, or false for user-defined constants.

Exemplos

Exemplo #1 Basic usage of ReflectionConstant::getExtensionName()

<?php
var_dump
((new ReflectionConstant('SQLITE3_TEXT'))->getExtensionName());
?>

O exemplo acima produzirá:

string(7) "sqlite3"

Veja Também

adicione uma nota

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

Não há notas de usuários para esta página.
To Top