php - 如何在反射类方法(PHP 5.x)中获取参数类型?

标签 php reflection parameters php-5.4

我正在尝试获取类型 $bar 变量。

<?php
class Foo
{
    public function test(stdClass $bar, array $foo)
    {

    }
}

$reflect = new ReflectionClass('Foo');
foreach ($reflect->getMethods() as $method) {
    foreach ($method->getParameters() as $num => $parameter) {
        var_dump($parameter->getType());
    }
}

我期望 stdClass 但我得到了

Call to undefined method ReflectionParameter::getType()

有什么问题吗?还是有别的办法?..

$ php -v
PHP 5.4.41 (cli) (built: May 14 2015 02:34:29)
Copyright (c) 1997-2014 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2014 Zend Technologies

UPD1 它也应该适用于数组类型。

最佳答案

如果你只是类型提示类,你可以使用 ->getClass() PHP 5 和 7 支持。

<?php

class MyClass {

}

class Foo
{
    public function test(stdClass $bar)
    {

    }

    public function another_test(array $arr) {

    }

    public function final_test(MyClass $var) {

    }
}

$reflect = new ReflectionClass('Foo');
foreach ($reflect->getMethods() as $method) {
    foreach ($method->getParameters() as $num => $parameter) {
        var_dump($parameter->getClass());
    }
}

我之所以说类,是因为在数组上,它会返回 NULL。

Output :

object(ReflectionClass)#6 (1) {
  ["name"]=>
  string(8) "stdClass"
}
NULL
object(ReflectionClass)#6 (1) {
  ["name"]=>
  string(7) "MyClass"
}

关于php - 如何在反射类方法(PHP 5.x)中获取参数类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36267390/

相关文章:

php - 使用 Carbon 了解时间是否介于两个时间点之间

php - 使用 Composer 自动加载 tFPDF 类

java - 实现具有通用返回类型的方法时通过反射实现多个方法

c# - 在运行时更改 C# 中字段的类型

java - 当我发送参数 boolean 时出现 NoSuchMethodException 错误

C++ 对局部变量的引用与对参数的引用

php - 如何使用 jquery 调用 cakephp 操作?

php - if else 和匿名函数的简写

c# - 如何获取堆栈框架的执行对象?

java - 构造函数中传递的参数 - Java