php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #30914 foreach returns the wrong value
Submitted: 2004-11-26 16:02 UTC Modified: 2004-11-26 16:25 UTC
From: phpbug at billmann-edv dot net Assigned:
Status: Not a bug Package: Arrays related
PHP Version: 4.3.10RC1 OS: Linux
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:
24 - 17 = ?
Subscribe to this entry?

 
 [2004-11-26 16:02 UTC] phpbug at billmann-edv dot net
Description:
------------
foreach returns the wrong results. Taking a look at the simple example code and the result should make any more explanations unnecessary... ;-)


Reproduce code:
---------------
foreach ( array ( 1 ) as $data ) {
  var_dump ( $data );
}


Expected result:
----------------
int(1)

Actual result:
--------------
array(2) {
  [0]=>
  int(1)
  [1]=>
  int(0)
}


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-11-26 16:12 UTC] derick@php.net
This works fine here, do you use any accelerator or cache?
 [2004-11-26 16:18 UTC] phpbug at billmann-edv dot net
ok, I just realized that this only happens when you use the ZendOptimizer 2.5.5. Without it and with the new version 2.5.7 it works like expected...
Sorry for the noise ;-)
 [2004-11-26 16:25 UTC] derick@php.net
Not a bug in PHP -> bogus.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 26 12:01:30 2024 UTC