Possible Duplicate:
How to find out where a function is defined?
I am working on a php project which I have to do some styling and I’ve been trying to search for string using Sublime Text’s “find in files”. The text is a function name used like:
echo advspecial();
but it seems “advspecial” doesnt exist. I tried renaming advspecial just to test if its a function then I get an error “Call to undefined function”
My question is, why can’t I find it in the files? Could it be inside a mySQL database?
If you are running this locally, try viewing the page and seeing if the error appears. If it shows an error then the function is probably defined in a file that you forgot or from a remote source.
If there is no error, then the function exists somewhere in your project, and Sublime is probably just experiencing a glitch.
There is no way that the function could be defined inside of a database.