up vote 1 down vote favorite

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

flag

6 Answers

up vote 2 down vote accepted

You could also do this in PHP itself:

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

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|flag
up vote 4 down vote

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|flag
Same in Zend Studio and I assume this will work with PDT for Eclipse then as well. – Gordon Feb 8 at 15:22
up vote 2 down vote

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

link|flag
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 at 14:26
up vote 0 down vote

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|flag
up vote 0 down vote

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

link|flag

Your Answer

get an OpenID
or
never shown

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