Quick Tip: Find PHP files changed in the last day
Here is a example of how to use the Find command to find PHP files changed in a servers home directory in the last day …
find /home -mtime -1 -name *.php
Pretty easy to modify this to give a different time period, search a different path, or find different kinds of files.