|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-05-12 09:09 UTC] dmitry@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Sat Feb 14 03:00:01 2026 UTC |
Description: ------------ When giving variable variable argument to isset() it is not checking correctly. It was working property with the snap from 21 February (and of course works correctly with php 5.2 branch). Reproduce code: --------------- <? $var_name = 'unexisting'; if(isset($$var_name)) { print $$var_name; } ?> Expected result: ---------------- //print nothing Actual result: -------------- Notice: Undefined variable: unexisting in /home/local/test/t3.php on line 5