|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2015-10-26 03:16 UTC] laruence@php.net
  [2015-10-26 03:16 UTC] laruence@php.net
 
-Status: Open
+Status: Closed
  [2015-10-27 10:51 UTC] ab@php.net
  [2016-07-20 11:35 UTC] davey@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 01:00:01 2025 UTC | 
Description: ------------ The condition for whether === can generate an exception doesn't account for undef variable warning during CV fetch. <?php set_error_handler(function($no, $msg) { throw new Exception($msg); }); if ($a === null) { throw Exception('Null'); }