PHP | ReflectionMethod getDeclaringClass()函数
ReflectionMethod::getDeclaringClass()函数是PHP中的一个内置函数,用于返回已声明类的名称。
句法:
ReflectionClass ReflectionMethod::getDeclaringClass ( void )
参数:此函数不接受任何参数。
返回值:此函数返回反射方法的声明类的名称。
下面的程序说明了ReflectionMethod::getDeclaringClass()函数:
方案一:
getDeclaringClass());
?>
输出:
object(ReflectionClass)#2 (1) {
["name"]=>
string(13) "GeeksforGeeks"
}
方案二:
getDeclaringClass());
?>
输出:
object(ReflectionClass)#2 (1) {
["name"]=>
string(10) "NidhiSingh"
}
参考: https://www. PHP.net/manual/en/reflectionmethod.getdeclaringclass。 PHP