mirror of
https://github.com/php/php-src.git
synced 2024-12-26 02:10:46 +08:00
23 lines
307 B
PHP
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';
|