|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2020-03-12 12:29 UTC] googleguy@php.net
 
-Assigned To:
+Assigned To: googleguy
  [2020-03-12 13:14 UTC] nikic@php.net
 
-Status: Assigned
+Status: Not a bug
  [2020-03-12 13:14 UTC] nikic@php.net
  [2020-03-12 13:51 UTC] googleguy@php.net
  [2020-03-12 13:53 UTC] nikic@php.net
  [2020-03-12 13:56 UTC] googleguy@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 22:00:01 2025 UTC | 
Description: ------------ 7.4.3 does not send uncaught exception messages to stderr, observed with PHP 7.4.3 built from php-7.4.3.tar.xz with the command ./configure --enable-mbstring --with-curl --with-openssl --with-mysqli --with-zlib --with-pdo-mysql --with-pdo-sqlite on Amazon Linux 2. Test script: --------------- php -r 'ini_set("display_errors","0");error_reporting(E_ALL);throw new Exception();' >1 2>2; du --apparent-size --bytes 1 2 Expected result: ---------------- 0 1 123 2 Actual result: -------------- 0 1 0 2