我有一个大型网络应用程序,我认为有一堆不再使用的旧文件,是否有应用程序可以告诉我这些文件是什么?
问问题
2219 次
3 回答
1
我认为您需要查看可用于 php 的项目管理工具。
你可以看看 phpUnderControl ( http://www.phpundercontrol.org/about.html ) 和 CruiseControl (你可以用谷歌搜索)。
您还可以使用提供代码覆盖率报告的工具(即和 IDE)。
于 2010-03-27T16:24:12.287 回答
1
还有死码检测器(DCD)。它会找到从未调用过的函数,这可能有助于清理您在生产中保留的文件。
于 2010-03-27T22:10:56.077 回答
0
You should be able to start with your web server logs. These will show you which files ARE being used. From there you should be able to track down a good number of the files those reference. Don't know of a good way to find out which aren't being used, only those that are.
于 2009-11-28T04:22:04.323 回答