ReflectionClass::getExtension()函数是PHP中的一个内置函数,用于返回ReflectionExtension对象,该对象表示已定义类的扩展名,而对于用户定义类则为NULL。
用法:
ReflectionExtension ReflectionClass::getExtension( void )
参数:该函数不接受任何参数。
返回值:该函数返回一个ReflectionExtension对象,该对象表示已定义类的扩展名,或者代表用户定义类的NULL。
以下示例程序旨在说明PHP中的ReflectionClass::getExtension()函数:
示例1:
<?php
// Defining a user-defined class named as Departments
class Departments {
static $Dept1 = 'CSE';
private static $Dept2 = 'ECE';
public static $Dept3 = 'EE';
}
// Using ReflectionClass over the class Departments
$ReflectionClass = new ReflectionClass('Departments');
// Calling getExtension() functions
$A = $ReflectionClass->getExtension();
// Getting the ReflectionExtension object
var_dump($A);
?>
输出:
NULL
示例2:
<?php
// Using ReflectionClass
$ReflectionClass = new ReflectionClass('ReflectionClass');
// Calling getExtension() functions
$A = $ReflectionClass->getExtension();
// Getting the ReflectionExtension object
var_dump($A);
?>
输出:
object(ReflectionExtension)#2 (1) { ["name"]=> string(10) "Reflection" }
参考: https://www.php.net/manual/en/reflectionclass.getextension.php
相关用法
- PHP SplFileInfo getExtension()用法及代码示例
- PHP DirectoryIterator getExtension()用法及代码示例
- PHP ReflectionClass isTrait()用法及代码示例
- PHP ReflectionClass isUserDefined()用法及代码示例
- PHP ReflectionClass getFileName()用法及代码示例
- PHP ReflectionClass getConstants()用法及代码示例
- PHP ReflectionClass getParentClass()用法及代码示例
- PHP ReflectionClass isIterateable()用法及代码示例
- PHP ReflectionClass isSubclassOf()用法及代码示例
- PHP ReflectionClass __toString()用法及代码示例
- PHP ReflectionClass hasConstant()用法及代码示例
- PHP ReflectionClass getExtensionName()用法及代码示例
- PHP ReflectionClass hasProperty()用法及代码示例
- PHP ReflectionClass isAnonymous()用法及代码示例
- PHP ReflectionClass isInterface()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 PHP | ReflectionClass getExtension() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。