I've got a reference to some function in php code. How to find out in which of included files the function is described?
|
up vote
1
down vote
favorite
|
|||
|
|
|
up vote
2
down vote
accepted
|
You could also do this in PHP itself:
|
||
|
|
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:
from within the root folder of the project. |
||
|
|
|
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. |
||
|
|
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. |
||
|
|
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. |
||
|
|
|
up vote
0
down vote
|
Just in case, on http://php.net you'll find every standard function. |
||
|
|