How can I find any unused functions in a PHP project?
Are there features or APIs built into PHP that will allow me to analyse my codebase – for example Reflection, token_get_all()?
Are these APIs feature rich enough for me not to have to rely on a third party tool to perform this type of analysis?
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.