当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Reflection getShortName()用法及代码示例


Reflection::getShortName()函数是PHP中的内置函数,用于返回指定类的简短名称,该部分不包含名称空间。

用法:

string Reflection::getShortName( void )

参数:该函数不接受任何参数。


返回值:此函数返回指定类的简短名称,该部分不带名称空间。

以下示例程序旨在说明PHP中的Reflection::getShortName()函数:

示例1:

<?php 
  
// Defining a namespace and class GFG 
namespace A\B; 
class GFG{ }  
   
// Using ReflectionClass over the namespace and 
// specified class GFG 
$ReflectionClass = new \ReflectionClass('A\\B\\GFG'); 
   
// Calling getShortName() function  
$A = $ReflectionClass->getShortName(); 
   
// Getting the short name of the specified class 
var_dump($A); 
?>
输出:
string(3) "GFG"

示例2:

<?php 
    
// Using ReflectionClass inbuilt function 
$ReflectionClass = new ReflectionClass('ReflectionClass'); 
    
// Calling getShortName() functions 
$A = $ReflectionClass->getShortName(); 
    
// Getting the short name of the specified class 
var_dump($A); 
?>
输出:
string(15) "ReflectionClass"

参考: https://www.php.net/manual/en/reflectionclass.getshortname.php



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 PHP | Reflection getShortName() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。