ID: 34620 Updated by: [EMAIL PROTECTED] Reported By: andrea at 3site dot it -Status: Open +Status: Bogus Bug Type: Arrays related Operating System: Windows XP SP2 PHP Version: 5.1.0RC1 New Comment:
Just stating that something is wrong doesn't help much. Don't hesitate to reopen the report when you got a short & complete reproduce code. Until then -> bogus. Previous Comments: ------------------------------------------------------------------------ [2005-09-24 00:15:34] andrea at 3site dot it Hi tony, I am at 220 line of an administration area that has about 12 class files ... then it's not possible for me reproduce the error but if I pass a string error diseappear, then it's not a my own problem. However, here is session class used: http://www.devpro.it/php4_id_94.html Follow its link to look at PDO for PHP4 example (but PDO doesn't do anything different from all other pages). Well , I pass a string, there are no problems, just an weisted hour to find the error that's of PHP and not mine. Maybe I' ll try with a PHP4 version to know more, best regards. ------------------------------------------------------------------------ [2005-09-23 23:27:10] [EMAIL PROTECTED] 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. ------------------------------------------------------------------------ [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
