Lampwrights Forum

Lampwrights Forum (http://www.lampwrights.com/index.php)
-   PHP (http://www.lampwrights.com/forumdisplay.php?f=4)
-   -   Finding functions (http://www.lampwrights.com/showthread.php?t=23)

Jeff 08-05-2010 09:41 AM

Finding functions
 
I find a lot of times I have to debug scripts that I am not very familiar with and it requires a bit of search & stepping. Invariably I find that I have to locate a function to find out how it is manipulating data or other operations. Some of these scripts are composed of hundreds of different files and can make this a bit tedious. Here is where grep is your friend! Say you are looking for the function hide_Password. Navigate to the directory via the command line (Linux) and type:

Code:

grep "function hide_Password" ./*
And it will search all the files for that phrase. You can even do a recursive grep like this:

Code:

grep -r "function hide_Password" ./*
and it will search all the directories inside the current working directory. This will save your HOURS of searching!

kajara23 12-09-2010 05:41 AM

The “grep” really looks like a savior when it comes to helping us to find all the directories inside a working directory!! I actually had this problem a couple of times where I had to spend hours trying to debug the scripts which made absolutely no sense to me!! Thanks for sharing this will be really useful for me!!


All times are GMT -4. The time now is 12:17 AM.

Powered by vBulletin® Version 3.8.8 Beta 4
Copyright ©2000 - 2024, vBulletin Solutions, Inc.