ee2cd8d32e
Flow control commands should not evaluate the conditions of conditional breakpoints when enabling and disabling breakpoints during stepping. Also, all breakpoints, rather than just the first matching breakpoint should be enabled/disabled.
15 linhas
166 B
PHP
15 linhas
166 B
PHP
<?php
|
|
|
|
// Warning: line numbers are sensitive, do not change
|
|
|
|
function bad() {
|
|
global $x;
|
|
$x += 10;
|
|
return true;
|
|
}
|
|
|
|
$x = 1;
|
|
echo $x."\n";
|
|
echo $x."\n";
|
|
$x = 1;
|