|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2021-07-26 21:37 UTC] cmb@php.net
-Status: Open
+Status: Feedback
-Assigned To:
+Assigned To: cmb
[2021-07-26 21:37 UTC] cmb@php.net
[2021-07-26 23:04 UTC] i at blackrabbit dot info
-Status: Feedback
+Status: Assigned
[2021-07-26 23:04 UTC] i at blackrabbit dot info
[2021-07-27 14:24 UTC] cmb@php.net
-Status: Assigned
+Status: Closed
[2021-07-27 14:24 UTC] cmb@php.net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 10:00:01 2025 UTC |
Description: ------------ With the low memory limit of 1Mb throwing exceptions silently terminate all browser's output. Exception still visible in the logs and everything works normally in the CLI mode, everything fine in PHP 5. Used software: Brew's PHP 7.0.6 (built: Apr 29 2016 04:21:39) ( NTS ) OS X's Apache 2.4.18 Test script: --------------- <?php set_time_limit(1); ini_set('memory_limit', '1M'); echo 'This is output before exception.'; Throw new \Exception('This is exception!'); ?> Expected result: ---------------- Exception and output before it should be visible.