ReflectionExtension::getName()函數是PHP中的內置函數,用於返回指定擴展名。
用法:
string ReflectionExtension::getName( void )
參數:該函數不接受任何參數。
返回值:此函數返回指定擴展名。
以下示例程序旨在說明PHP中的ReflectionExtension::getName()函數:
程序_1:
<?php
// Defining an extension
$A = 'DOM';
// Using ReflectionExtension() over the
// specified extension
$extension = new ReflectionExtension($A);
// Calling the getName() function
$B = $extension->getName();
// Getting the name of the
// specified extension
var_dump($B);
?>
輸出:
string(3) "dom"
程序_2:
<?php
// Using ReflectionExtension() over
// a extension xml
$extension = new ReflectionExtension('xml');
// Calling the getName() function and
// Getting the name of the specified extension
var_dump($extension->getName());
?>
輸出:
string(3) "xml"
參考: https://www.php.net/manual/en/reflectionextension.getname.php
相關用法
- PHP ReflectionExtension isTemporary()用法及代碼示例
- PHP ReflectionExtension isPersistent()用法及代碼示例
- PHP ReflectionExtension getDependencies()用法及代碼示例
- PHP ReflectionExtension export()用法及代碼示例
- PHP ReflectionExtension getConstants()用法及代碼示例
- PHP ReflectionExtension __toString()用法及代碼示例
- PHP ReflectionExtension getFunctions()用法及代碼示例
- PHP ReflectionExtension getINIEntries()用法及代碼示例
- PHP ReflectionExtension getClasses()用法及代碼示例
- PHP ReflectionExtension getVersion()用法及代碼示例
- PHP ReflectionExtension info()用法及代碼示例
- PHP ReflectionExtension getClassNames()用法及代碼示例
- PHP SimpleXMLElement::getName()用法及代碼示例
- PHP ReflectionProperty getName()用法及代碼示例
- PHP ReflectionParameter getName()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 PHP | ReflectionExtension getName() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。