ID:               34620
 Updated by:       [EMAIL PROTECTED]
 Reported By:      andrea at 3site dot it
-Status:           Open
+Status:           Feedback
 Bug Type:         Arrays related
 Operating System: Windows XP SP2
 PHP Version:      5.1.0RC1
 New Comment:

Thank you for this bug report. To properly diagnose the problem, we
need a short but complete example script to be able to reproduce
this bug ourselves. 

A proper reproducing script starts with <?php and ends with ?>,
is max. 10-20 lines long and does not require any external 
resources such as databases, etc.

If possible, make the script source available online and provide
an URL to it here. Try to avoid embedding huge scripts into the report.




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

[2005-09-23 23:24:32] andrea at 3site dot it

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 ?

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

[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