up vote 1 down vote favorite
share [g+] share [fb]

I've got a reference to some function in php code. How to find out in which of included files the function is described?

link|improve this question

feedback

6 Answers

up vote 3 down vote accepted

You could also do this in PHP itself:

$reflFunc = new ReflectionFunction('function_name');
print $reflFunc->getFileName() . ':' . $reflFunc->getStartLine();
link|improve this answer
+1 for solving this with PHP instead of the IDE. Nice idea. – Gordon Feb 8 '10 at 15:23
feedback

Either use a IDE that allows doing so (I would recomend Eclipse PDT), or you can allways grep it if on Linux, or using wingrep. In Linux it would be something like:

grep -R "function funName" *

from within the root folder of the project.

link|improve this answer
feedback

If you use an IDE like Netbeans, you can CTRL+Click the function use and it will take you to where it is defined, assuming the file is within the project folder you defined.

There's no code or function to do this though.

link|improve this answer
Same in Zend Studio and I assume this will work with PDT for Eclipse then as well. – Gordon Feb 8 '10 at 15:22
feedback

I assume that by "described" you mean "defined". For this, you ideally need a decent IDE that can do it.

link|improve this answer
I'm using Aptana which have text search through project. But to use it I need to import the hole (very large) site as a project. – SaltLake Feb 8 '10 at 14:26
feedback

You'll need an IDE that supports "Open Function Declaration" functionality. A good for for php is Eclipse PDT.

To look for the function definition, highlight the function name, hold CTRL + Click on the name.

link|improve this answer
feedback

Just in case, on http://php.net you'll find every standard function.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.