ID:               46631
 Updated by:       [EMAIL PROTECTED]
 Reported By:      oistein dot notnas at mtu dot no
-Status:           Open
+Status:           Bogus
 Bug Type:         Arrays related
 Operating System: Windows XP
 PHP Version:      5.2.6
 New Comment:

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




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

[2008-11-20 15:36:25] oistein dot notnas at mtu dot no

Description:
------------
If the start value is lower then the max value, you should get one
result even if the step makes it unable to return 2 values. 

Instead of 
$list = range($i * 2, TOP, $i);

I have to write
if (TOP > ($i * 3))
        $list = range($i * 2, TOP, $i);
    else 
        $list = array($i * 2);

could not even use
$list = @range($i * 2, TOP, $i) or array($i * 2);

Reproduce code:
---------------
print_r(range(6, 8, 3));

Expected result:
----------------
Array
(
    [0] => 6
)

Actual result:
--------------
Warning: range(): step exceeds the specified range


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


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

Reply via email to