可能重复:
如何在 PHP 项目中找到未使用的函数
如何检查 PHP5 中未使用的代码?像下面这样的东西?
- 使用反射扫描类
- 遵循“正常”代码
token_get_all()
并使用令牌 T_NEW 查找变量,然后扫描方法调用。 - 输出类似
classname (count of new declarations) methods (count of calls)
可能重复:
如何在 PHP 项目中找到未使用的函数
如何检查 PHP5 中未使用的代码?像下面这样的东西?
token_get_all()
并使用令牌 T_NEW 查找变量,然后扫描方法调用。classname (count of new declarations) methods (count of calls)