PHP,Tokenizer,查找函数的所有参数
帮助我在源代码中使用函数 token_get_all() 找到函数“funcname”的所有参数。听起来很简单,但是有很多特殊的选项,比如数组作为参数或者调用静态方法作为参数。也许有一个简单的通用解决方案?
UPD:
我需要您调用它时传递的函数参数。让他们对文件进行外部分析。例如,有一个 php 文件:
<?php
funcname('foo');
funcname(array('foo'), 'bar');
分析器应该如下开始:
$source = file_get_contents('source.php');
$tokens = token_get_all($source);
...
结果,需要得到这样的列表:
[0] => array('foo'),
[1] => array(array('foo'), 'bar')
Help me find all the arguments of the function "funcname" using the function token_get_all() in the source code. It sounds simple, but there are many special options, such as arrays as parameters or call static methods as parameters. Maybe there's a simple universal solution?
UPD:
I need the function arguments passed when you call it. Get them to be at an external analysis of the file. For example, there is a php-file:
<?php
funcname('foo');
funcname(array('foo'), 'bar');
The analyzer should begin as follows:
$source = file_get_contents('source.php');
$tokens = token_get_all($source);
...
As a result, need to get a list like this:
[0] => array('foo'),
[1] => array(array('foo'), 'bar')
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不使用分词器,而是使用反射。在这种情况下,使用
ReflectionFunction
:此输出
您也可以使用此类和相关类(例如
ReflectionParameter
)来查找有关函数及其参数的更多信息,例如参数是否可选以及其默认值是什么。Rather than using a tokenizer, use reflection. In this case, use
ReflectionFunction
:This outputs
You can also use this class and related classes (such as
ReflectionParameter
) to find out more information about a function and its parameters, such as whether a parameter is optional and what its default value is.