|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2004-04-06 03:06 UTC] derick@php.net
  [2004-04-06 03:44 UTC] oleg at e-kazan dot ru
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 22:00:01 2025 UTC | 
Description: ------------ error_reporting sets to 0 after @ Reproduce code: --------------- <? error_reporting(E_ALL); function a() { @$a = 1; }; var_dump(error_reporting()); a(); var_dump(error_reporting()); ?> Expected result: ---------------- int(2047) int(2047) Actual result: -------------- int(2047) int(0)