| Summary: | Variables view doesn't show new value of object variable | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Toshihiro Izumi <euthanasia_waltz> |
| Component: | PDT | Assignee: | PHP Debug <php.debug-inbox> |
| Status: | CLOSED WONTFIX | QA Contact: | |
| Severity: | normal | ||
| Priority: | P2 | CC: | zulus |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
with ZendDebugger. Xdebug doesn't have this issue. Zend Debugger is discontinued. Last release is for no longer maintained PHP 7.0. |
Steps to reproduce: 1. Edit script as <?php class Foo { var $s; } $o=new Foo(); $o->s="test"; echo $o->s; ?> 2. Add breakpoint onto "echo $o->s;" 3. Start debugging 4. When stopped at breakpoint, change value of $o->s => Value of $o->s in Variables view is not changed to new value 5. Resume => New value appears on Debug Output view Changing value does work but Variables view doesn't show it.