开发者

Find redundant user functions

I'm profiling an app that has a boat load of functions in many files and I'm trying to isolate funct开发者_如何学运维ions that don't get called ever.

Any ideas before I proceed?


I don't believe there is an easy way to do this. print_r(get_defined_functions()); in a file that can be included at the end of every file or in a global. Collect the output and do searches on all your files for function calls. This will isolate out your functions.

Or

Move all the functions to an include file, comment out the functions and then allow the application to error. As you get errors for those functions un-comment the functions to resolve the errors. At the end of all your checks you'll have a list of commented functions that aren't utilized.

Either way it's not easy.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜