ID:               34620
 User updated by:  andrea at 3site dot it
 Reported By:      andrea at 3site dot it
 Status:           Open
 Bug Type:         Arrays related
 Operating System: Windows XP SP2
 PHP Version:      5.1.0RC1
 New Comment:

P.S. ... with this code
$GLOBALS['SES']->register('__artist_modify__',
array(''.$artist_id[0].'', $artist_id[1]));

it works as expected ... then maybe a trouble with an integer value ?


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

[2005-09-23 23:20:34] andrea at 3site dot it

Description:
------------
While I interact with another class and I call a method sending a
run-time created array its values (integer value) is wrong.
This happen when I work with a lot of $_POST variables (I don't know if
this is a problem but without this bug is absent ...)

Reproduce code:
---------------
// code ....
// NOTE: I develop with error_reporting E_ALL 
// and at this point is all OK

// die(print_r($artist_id, true));
// produce Array ( [0] => 1 [1] => image )

$GLOBALS['SES']->register('__artist_modify__', array($artist_id[0],
$artist_id[1]));

// external class, that work without problems ...
// on $GLOBALS['SES'] register method
function register($name, $value) {
        die(print_r($value, true));
        // produce Array ( [0] => 86724468 [1] => image )
}

Expected result:
----------------
Expected ? ... I send an array with two keys ... so what's up ?

Actual result:
--------------
// this code works perfectly ... 
function accept($name, $value) {
        die(print_r($value, true));
}
$artist_id = array(1, 'image');
accept('__artist_modify__', array($artist_id[0], $artist_id[1]));


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


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

Reply via email to