| black at scene-si dot org 2007-02-24, 6:59 pm |
| ID: 40590
User updated by: black at scene-si dot org
Reported By: black at scene-si dot org
-Status: Bogus
+Status: Open
-Bug Type: Variables related
+Bug Type: Documentation problem
Operating System: linux
PHP Version: 5.2.1
New Comment:
Consider fixing the documentation, to reflect this "expected"
behaviour. I changed the category to documentation problem and status
back to open.
Regards,
Tit
Previous Comments:
------------------------------------------------------------------------
[2007-02-24 15:09:24] iliaa@php.net
Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php
In PHP 5 this is the expected behavior.
------------------------------------------------------------------------
[2007-02-22 13:26:58] black at scene-si dot org
Description:
------------
list() overwriting variable, unexpected result (different from php4).
Reproduce code:
---------------
$v = array("00","-- Day --");
list($k,$v) = $v;
var_dump(array($k,$v));
Expected result:
----------------
Var dump should return:
array(2) {
[0]=> string(2) "00"
[1]=> string(11) "-- Day -- "
}
Actual result:
--------------
Var dump returns:
array(2) {
[0]=> string(1) "-"
[1]=> string(11) "-- Day -- "
}
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=40590&edit=1
|