Does anyone know of a tool that can find unused functions in a php project?
I'm looking for a program that can scan a folder (and sub folders) containing php code and tell me which functions are never referenced.
|
3
|
Does anyone know of a tool that can find unused functions in a php project? I'm looking for a program that can scan a folder (and sub folders) containing php code and tell me which functions are never referenced.
|
|||
|
|
|
|
Try out the PHP Test Coverage Tool. |
||
|
|
|
|
Thanks Greg and Dave for the feedback. Wasn't quite what I was looking for, but I decided to put a bit of time into researching it and came up with this quick and dirty solution:
I'll probably spend some more time on it so I can quickly find the files and line numbers of the function definitions and references; this information is being gathered, just not displayed. |
|||
|
|
|
Xdebug can also provide code coverage. You could use it in combination with the autoprependfile and autoappendfile ini directives to log code coverage of your application during general use. |
||
|
|
|
|
Stacey, I'm having the same issue. Did you ever do any more work on your script? Specifically, if I'm correct, it seems to count the function definition in the "refrences" column... If you're still interested, I'll probably be making some modifications within the next few lines. Feel free to drop me a line - jason AT jasonNOSPACEantmanDOTcom |
||
|
|