Let's say i have this php function called from multiple php files
do_something($var);
How can i find the files from which the function is called?
later edit: i want to do this on windows
|
feedback
|
This question came from our site for pro webmasters.
|
At least some IDE's have a means of searching through your current project for all instances of certain variables, function calls, etc. If you are using an IDE, check its help. If you are using a *nix system, you can use grep to search:
The above will search your current working directory for the text 'do_something' in all files ending with the '.php' extension. You can expand this to search all subdirectories of the current directory using the find command:
Use 'man grep' and 'man find' from your *nix command line to learn more. If you are on Windows, I believe the find command can do similar things, I am not as familiar with it, but the basic syntax should look something like:
| |||||||||||||||
feedback
|
|
Three ways to do this:
You should always be doing the first two; the last is just a convenience. | |||
|
feedback
|
|
Adobe Dreamweaver has a site wide/directory text search function as does eclipse workbench, UltraEdit and TopStyle Pro. | |||
|
feedback
|