ID:               41351
 Updated by:       [EMAIL PROTECTED]
 Reported By:      jonathan dot de dot berdt at howest dot be
-Status:           Open
+Status:           Closed
 Bug Type:         Scripting Engine problem
 Operating System: linux
 PHP Version:      5.2.2
 New Comment:

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.




Previous Comments:
------------------------------------------------------------------------

[2007-05-11 07:14:36] jonathan dot de dot berdt at howest dot be

Yes, that solved my problem/fatal error!

------------------------------------------------------------------------

[2007-05-10 20:24:57] [EMAIL PROTECTED]

How about you remove those []'s from this:
foreach ($query[] as $qry)

Might actually work..and same for the other foreach.

------------------------------------------------------------------------

[2007-05-10 12:40:02] jonathan dot de dot berdt at howest dot be

Description:
------------
error thrown on the first 'foreach' command.

server using: php 5.2.1

Reproduce code:
---------------
$query = array ('table', 'room');
$criteria = array ('table' => array ('subjects', 'teachers', 'groups',
'rooms', 'tableparts'),
        'room' => array ('rooms', 'roomtypes', 'roomcapacity',
'roomcomputercapacity', 'roomotherkeywords', 'tableparts'));
foreach ($query[] as $qry)
{
        foreach($criteria[$qry][] as $crit)
        {
                if (isset($_GET['leer_' . $qry . 'query_' . $crit.
'_removekeyword']))
                {
                        unset ($_SESSION['leer_' . $qry . 'query_' . $crit .
'_selectedkeywords']
                                [$_GET['leer_' . $qry . 'query_' . $crit. 
'_removekeyword']]);
                }
        }
}


Expected result:
----------------
this code should process a number of session variables. These variables
have a structured name, and thus the changing parts have been put in
these small arrays.

Actual result:
--------------
Fatal error: Invalid opcode 81/16/8. in
/var/www/html/dokeos/main/leer/leer.php on line 198


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=41351&edit=1

Reply via email to