How to check which file is a function?

I work with PHP and sometimes I want to find where the function in use is located. How can I do this easily without tracking everything?

+3
source share
6 answers

I usually just do quick

'grep -d recurse "function\ function_name" *

from the root of the project.

+4
source
0
source

notepad ++ find , .

0

Ctrl + IDE (NetBeans, PhpStorm)

0

dev-null-dweller . .

0

All Articles