Pankaj
Pankaj

Reputation: 370

PHP - how to track all functon calls in eclipse (PDT)?

I am using eclipse PDT for my project development in PHP.

I want to make changes in some functions in existing project. So I need to trace at how many places the function is been called.

Is there any way I do this in Eclipse PDT ?

Thanks in advance.

Upvotes: 1

Views: 93

Answers (2)

zulus
zulus

Reputation: 2505

Right click on function name -> references -> project.

Upvotes: 0

Pankaj
Pankaj

Reputation: 370

Open file in eclipse and follow steps

  1. Select function and right click on function
  2. Select Refactor->Rename from menu
  3. Now info box will appear, click down arrow for menu.
  4. From menu click "Open rename dialog"
  5. Rename function and click preview in dialog box

Now you can see in Changes to be performed section in dialog box, where the function is been called.

Upvotes: 1

Related Questions