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


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


Reflection::getNamespaceName()函数是PHP中的内置函数,用于返回指定名称空间的名称。

用法:

string Reflection::getNamespaceName( void )

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


返回值:该函数返回指定名称空间的名称。

以下示例程序旨在说明PHP中的Reflection::getNamespaceName()函数:
示例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 getNamespaceName() function  
$A = $ReflectionClass->getNamespaceName(); 
   
// Getting the name of the specified namespace 
var_dump($A); 
?>
输出:
string(3) "A\B"

示例2:

<?php 
    
// Using ReflectionClass over the inbuilt class 'ReflectionClass' 
$ReflectionClass = new ReflectionClass('ReflectionClass'); 
    
// Calling getNamespaceName() function  
$A = $ReflectionClass->getNamespaceName(); 
    
// Getting the name of the namespace 
var_dump($A); 
?>
输出:
string(0) ""

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



相关用法


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