php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #32670 foreach sets source variable if not already set and does not issue warning
Submitted: 2005-04-11 16:07 UTC Modified: 2005-05-03 03:30 UTC
From: cmoore at iyd dot com Assigned:
Status: Closed Package: Arrays related
PHP Version: 4CVS, 5CVS (2005-04-11) OS: *
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: cmoore at iyd dot com
New email:
PHP Version: OS:

 

 [2005-04-11 16:07 UTC] cmoore at iyd dot com
Description:
------------
prior versions of php (4.3.10 tested) will issue a warning if an unset variable is passed to foreach(). even with error_reporting(E_ALL), this one will not warn. the warning would be nice to see with the same level of error reporting that if() warns at.


Reproduce code:
---------------
<?
error_reporting(E_ALL);
foreach($check as $test)
  ;



Expected result:
----------------
Warning: Invalid argument supplied for foreach() in test.php on line 3


Actual result:
--------------
there is no result in 4.3.11


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-04-11 17:36 UTC] sniper@php.net
Result with PHP 4 CVS: nothing
Result with PHP 5 CVS:

Notice: Undefined variable: check in /home/jani/t.php on line 3

Warning: Invalid argument supplied for foreach() in /home/jani/t.php on line 3
/usr/src/php/php5/Zend/zend_vm_execute.h(18237) :  Freeing 0x0968A434 (16 bytes), script=t.php
=== Total 1 memory leaks detected ===

 [2005-05-03 03:30 UTC] iliaa@php.net
This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 17:01:29 2024 UTC