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

问题描述 投票:3回答:2

我正在尝试获取类型$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它也适用于数组类型。

php reflection parameters php-5.4
2个回答
3
投票

如果您只是键入提示类,则可以使用PHP 5和7中支持的->getClass()

<?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"
}

2
投票

它似乎已经在PHP Reflection - Get Method Parameter Type As String中添加了类似的问题

我写了我的解决方案,适用于所有情况:

/**
 * @param ReflectionParameter $parameter
 * @return string|null
 */
function getParameterType(ReflectionParameter $parameter)
{
    $export = ReflectionParameter::export(
        array(
            $parameter->getDeclaringClass()->name,
            $parameter->getDeclaringFunction()->name
        ),
        $parameter->name,
        true
    );
    return preg_match('/[>] ([A-z]+) /', $export, $matches)
        ? $matches[1] : null;
}
© www.soinside.com 2019 - 2024. All rights reserved.