ReflectionExtension::getName
(PHP 5)
ReflectionExtension::getName — دریافت نام ضمیمه
Description
public string ReflectionExtension::getName
( void
)
دریافت نام ضمیمه.
Parameters
This function has no parameters.
Return Values
نام ضمیمه.
Examples
Example #1 مثال ReflectionExtension::getName()
<?php
$ext = new ReflectionExtension('mysqli');
var_dump($ext->getName());
?>
The above example will output something similar to:
string(6) "mysqli"
There are no user contributed notes for this page.
