ReflectionExtension::getName

(PHP 5, PHP 7)

ReflectionExtension::getNameGets extension name

Descrierea

public ReflectionExtension::getName ( ) : string

Gets the extensions name.

Parametri

Această funcție nu are parametri.

Valorile întoarse

The extensions name.

Exemple

Example #1 ReflectionExtension::getName() example

<?php
$ext 
= new ReflectionExtension('mysqli');
var_dump($ext->getName());
?>

Exemplul de mai sus va afișa ceva similar cu:

string(6) "mysqli"

A se vedea și

add a note add a note

User Contributed Notes

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