|
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-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 06 18:00:01 2025 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