|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-11-01 00:34 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 20 16:00:02 2025 UTC |
Description: ------------ There is a BC break in the @ operator from PHP 4 to 5. While PHP 4 doesn't output anything with supplied script (the correct thing), PHP 5 echoes a notice. Reproduce code: --------------- <? error_reporting(E_ALL); function a ($var){} a(@$abc); ?> Expected result: ---------------- nothing Actual result: -------------- Notice: Undefined variable: abc