gpt4 book ai didi

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

转载 作者:可可西里 更新时间:2023-11-01 00:41:18 25 4
gpt4 key购买 nike

我正在尝试获取类型 $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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com