ID: 24220
Updated by: [EMAIL PROTECTED]
Reported By: minakov at bas-net dot by
Status: Open
-Bug Type: Scripting Engine problem
+Bug Type: Documentation problem
Operating System: WinXP
PHP Version: 4.3.1
New Comment:
This is a doc problem. From PHP 4.1.0 and higher you can also use
characters as a range... and the function effectively does range("2",
"2") now (it takes the first character).
Previous Comments:
------------------------------------------------------------------------
[2003-06-17 05:32:25] minakov at bas-net dot by
Description:
------------
I've found a bug with "range" in PHP 4.3.1;
eg.
print_r(range("2003", "2004")) != print_r(range(2003, 2004));
print_r(range("2003", "2004")) == print_r(range(2, 2));
Reproduce code:
---------------
print_r(range("2003", "2004"));
Expected result:
----------------
Array
(
[0] => 2003
[1] => 2004
)
Actual result:
--------------
Array
(
[0] => 2
)
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=24220&edit=1
--
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php