|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2019-01-11 12:01 UTC] krakjoe@php.net
[2019-01-11 12:01 UTC] krakjoe@php.net
-Status: Open
+Status: Wont fix
[2019-01-11 12:37 UTC] cmb@php.net
[2019-01-30 17:31 UTC] krakjoe@php.net
-Status: Wont fix
+Status: Closed
-Assigned To:
+Assigned To: krakjoe
[2019-01-30 17:31 UTC] krakjoe@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 17:00:02 2025 UTC |
Description: ------------ phpdbg should have the same capabilities as the php cli, however the display_errors=stderr ini setting does not work. Test script: --------------- --fatal.php-- <?php class FatalTest {} eval('class FatalTest {}'); $ phpdbg -ddisplay_errors=stderr -qrr fatal.php 2>/dev/null $ php -ddisplay_errors=stderr fatal.php 2>/dev/null Expected result: ---------------- Nothing output to the terminal Actual result: -------------- Fatal error and stack trace are shown after the phpdbg command on the terminal stdout.