php-src/sapi/phpdbg/tests/phpdbg_break_next.phpt
2015-08-23 11:58:45 +01:00

23 lines
307 B
PHP

--TEST--
Test phpdbg_break_next() function
--PHPDBG--
r
c
q
--EXPECTF--
[Successful compilation of %s]
prompt> A
[Breakpoint #0 added at %s]
[Breakpoint #0 in %s at %s:5, hits: 1]
>00005: echo 'B';
00006:
prompt> B
[Script ended normally]
prompt>
--FILE--
<?php
echo 'A';
phpdbg_break_next();
echo 'B';