php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #71721 array_key_exists on $GLOBALS
Submitted: 2016-03-06 08:31 UTC Modified: 2016-03-06 15:54 UTC
From: asylow at free dot fr Assigned:
Status: Duplicate Package: *General Issues
PHP Version: 7.0.4 OS:
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
12 + 50 = ?
Subscribe to this entry?

 
 [2016-03-06 08:31 UTC] asylow at free dot fr
Description:
------------
Testing $GLOBALS with array_key_exists() gives TRUE as soon as the variable is names anywhere in the code.

This behaviour was not reproduced in PHP7.0.0 or PHP5.

Test script:
---------------
<?php
var_dump(array_key_exists('var', $GLOBALS)); // false
?>

with a var affected after :
<?php
var_dump(array_key_exists('var', $GLOBALS)); // true
$var = 'foo';
?>

with a var simply named in the code:
<?php
var_dump(array_key_exists('var', $GLOBALS)); // true
if (1 == 0) { $var = 'foo'; }
?>

Expected result:
----------------
All tests should give false.


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2016-03-06 15:54 UTC] requinix@php.net
-Status: Open +Status: Duplicate
 [2016-03-06 15:54 UTC] requinix@php.net
Duplicate of bug #71695
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 22:01:26 2024 UTC