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
相关用法
- PHP Reflection getModifiers()用法及代码示例
- PHP Reflection getModifierNames()用法及代码示例
- PHP Reflection getName()用法及代码示例
- PHP Reflection getShortName()用法及代码示例
- PHP Ds\Set first()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- PHP each()用法及代码示例
- p5.js pan()用法及代码示例
- PHP Ds\Set last()用法及代码示例
- PHP Ds\Set add()用法及代码示例
- d3.js d3.lab()用法及代码示例
- PHP Ds\Set contains()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 PHP | Reflection getNamespaceName() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。