I've got a reference to some function in php code. How to find out in which of included files the function is described?
|
feedback
|
|
You could also do this in PHP itself:
| |||
|
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:
from within the root folder of the project. | |||
|
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. | |||
feedback
|
|
I assume that by "described" you mean "defined". For this, you ideally need a decent IDE that can do it. | |||
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. | |||
|
feedback
|
|
Just in case, on http://php.net you'll find every standard function. | |||
|
feedback
|