ReflectionExtension::getName

(PHP 5)

ReflectionExtension::getNameGets extension name

Beskrivelse

public string ReflectionExtension::getName ( void )

Gets the extensions name.

Parametre

This function has no parameters.

Returnerings Værdier

The extensions name.

Eksempler

Eksempel #1 ReflectionExtension::getName() example

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

The above example will output something similar to:

string(6) "mysqli"

Se også

add a note add a note

User Contributed Notes

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