|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-10-27 14:42 UTC] bwoebi@php.net
-Status: Open
+Status: Verified
-Assigned To:
+Assigned To: bwoebi
[2015-10-27 14:42 UTC] bwoebi@php.net
[2016-10-16 11:48 UTC] bwoebi@php.net
[2016-10-16 11:48 UTC] bwoebi@php.net
-Status: Verified
+Status: Closed
[2016-10-16 11:48 UTC] bwoebi@php.net
[2016-10-16 11:48 UTC] bwoebi@php.net
[2016-10-17 10:06 UTC] bwoebi@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 17:00:01 2025 UTC |
Description: ------------ When terminating a running script under phpdbg by ctrl+c, the execution does not stop, but falls back to phpdbg prompt. Also it requires double ctrl+c, first has no effect (not sure if that is a bug as well though). Tested with bash and dash. Test script: --------------- <?php for (;;) { echo 1, PHP_EOL; sleep(1); } Actual result: -------------- $ phpdbg -qrr test.php 1 ^C1 ^C[Current opline: in internal function sleep] >00005: sleep(1); 00006: } 00007: prompt>