php get class,PHP ReflectionParameter getClass()用法及代码示例

本文详细介绍了PHP内置函数ReflectionParameter::getClass(),用于获取参数的类类型提示。通过示例代码展示了如何使用该函数,以及在不同参数情况下返回的值。在示例中,函数成功返回了Exception类的ReflectionClass对象,而在未指定类类型提示的参数上则返回了NULL。
摘要由CSDN通过智能技术生成

ReflectionParameter::getClass()函数是PHP中的内置函数,用于返回为该参数提示的类类型。

用法:

ReflectionClass ReflectionParameter::getClass ( void )

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

返回值:此函数返回为参数提示的类类型。

以下示例程序旨在说明PHP中的ReflectionParameter::getClass()函数:程序1:

// Initializing a user-defined class Company1

class Company1

{

public function GFG( Exception $Parameter){}

}

// Initializing a subclass Company2

class Company2 extends Company1

{

}

// Using the ReflectionParameter over the above class

$A = new ReflectionParameter(['Company2', 'GFG'], 0);

// Calling the getClass() function

$B = $A->getClass();

// Getting the class type hinted for the parameter.

var_dump($B);

?>

输出:

object(ReflectionClass)#2 (1) {

["name"]=>

string(9) "Exception"

}

程序2:

// Initializing some user-defined classes

class Department1

{

public function HR($Parameter1){}

}

class Department2

{

public function Coding( Exception $Parameter2, Exception $Parameter3){}

}

class Department3

{

public function Marketing($Parameter4, $Parameter5, $Parameter6){}

}

// Using the ReflectionParameter over the above classes

$A = new ReflectionParameter(['Department1', 'HR'], 0);

$B = new ReflectionParameter(['Department2', 'Coding'], 1);

$C = new ReflectionParameter(['Department3', 'Marketing'], 2);

// Calling the getClass() function and

// getting the class type hinted for the parameter.

var_dump($A->getClass());

var_dump($B->getClass());

var_dump($C->getClass());

?>

输出:

NULL

object(ReflectionClass)#4 (1) {

["name"]=>

string(9) "Exception"

}

NULL

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值