Reputation: 1383
Like in topic, is there any option to find something in PhpStorm Debugger view?
For example I want to find element 39001421
in:
How I can achieve this?
Upvotes: 0
Views: 93
Reputation: 1383
@LazyOne Did a great job. With his help i think that i have found most effectively way to find something in PhpStorm debugger view. (if you are curious how we were looking for that answer please read comments beneath first post)
Upvotes: 1
Reputation: 4619
I don't think a simple Ctrl-F works here. Here's one way to do it.
When you hit your breakpoint, press Alt-F8 or from the menu, choose Run -> Evaluate expression
. In the window that opens, simply input the expression you would like to evaluate; in your case, something like
$items[39001421]
You'll get the value you're looking for at the bottom of the window.
Upvotes: 1