0

如果我有这样的课程:

class A {
    public function method1($arg1, $arg2){}
}

现在,我需要做这样的事情:

/**
 * @return array The list of arguemnt names
 */
function getMethodArgList(){
    return get_method_arg_list(A, method1);
}

那么,我该如何实现函数 getMethodArgList() ?任何人都可以帮助我吗?

4

1 回答 1

4

不太确定我是否得到了这个问题,但ReflectionClass和 ReflectionMethod 可能是您正在寻找的。

例如

<?php
var_dump(getMethodArgList());

class A {
    public function method1($arg1, $arg2){}
}

function getMethodArgList() {
    $rc = new ReflectionClass('A');
    $rm = $rc->getMethod('method1');
    return $rm->getParameters();
}

印刷

array(2) {
  [0] =>
  class ReflectionParameter#3 (1) {
    public $name =>
    string(4) "arg1"
  }
  [1] =>
  class ReflectionParameter#4 (1) {
    public $name =>
    string(4) "arg2"
  }
}

仅获取您可以使用的名称

return array_map(function($e) { return $e->getName(); }, $rm->getParameters());

代替return $rm->getParameters();

于 2013-06-18T06:43:46.170 回答