Possible Duplicate:
How to find out where a function is defined?
in a client's website I have a php code:
return userHasActivePurchase($iId);
The website is full of icludes, requires. I have made a full text search on "userHasActivePurchase" to find out what php file does contain this function without success.
My question is : I have a function name and I would like to know what php files contains that function.
I tried with:
print_r(userHasActivePurchase);
without success.
Please help !