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?