Open johnathanz opened 10 years ago
I'm running into a case where XDebug always stops on a line with property_exists() despite no known breakpoint being set on the line.
Run XDebug on the following code, *with no breakpoints and see how it stops on line
<html> <head> <title>Test - Modular</title> </head> <body> <?php Class A { public $testProperty; } $testObj = new A(); $exist = property_exists(testObj, testProperty); echo "<h1>Hello World!</h1>"; ?> </body> </html>
I'm running into a case where XDebug always stops on a line with property_exists() despite no known breakpoint being set on the line.
Run XDebug on the following code, *with no breakpoints and see how it stops on line