What is the best way to determine which php scripts are no longer in use?

When inheriting programming maintenance from a large web application that has many php5 (4000+) scripts, what is the best way to determine which scripts are no longer in use and are likely to be deleted?

+4
source share
1 answer

There is a Dead Code Detector (DCD) project .

It finds functions that are never called, which can help clear even the files that you store during production.

To search for unused files for PHP there is no solid software / algorithm (at least, according to my information).

, , .

+1

All Articles