From:             disas at mail dot ru
Operating system: Windows Vista SP1
PHP version:      5.2.9
PHP Bug Type:     Strings related
Bug description:  Bug on explode limit.

Description:
------------
Bug on result where negative or positive number of limit is very high.

Reproduce code:
---------------
#Code:

var_export(
        explode(" "," 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 ", -1e99)
);

#Result:
array (
  0 => ' 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 ',
);

#Code:

var_export(
        explode(" "," 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 ", -1e9)
);

#Result:
array (
)

Expected result:
----------------
array (
  0 => ' 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 ',
);

Actual result:
--------------
I think that in both cases the result should be:
array(
)

-- 
Edit bug report at http://bugs.php.net/?id=47854&edit=1
-- 
Try a CVS snapshot (PHP 5.2):        
http://bugs.php.net/fix.php?id=47854&r=trysnapshot52
Try a CVS snapshot (PHP 5.3):        
http://bugs.php.net/fix.php?id=47854&r=trysnapshot53
Try a CVS snapshot (PHP 6.0):        
http://bugs.php.net/fix.php?id=47854&r=trysnapshot60
Fixed in CVS:                        
http://bugs.php.net/fix.php?id=47854&r=fixedcvs
Fixed in CVS and need be documented: 
http://bugs.php.net/fix.php?id=47854&r=needdocs
Fixed in release:                    
http://bugs.php.net/fix.php?id=47854&r=alreadyfixed
Need backtrace:                      
http://bugs.php.net/fix.php?id=47854&r=needtrace
Need Reproduce Script:               
http://bugs.php.net/fix.php?id=47854&r=needscript
Try newer version:                   
http://bugs.php.net/fix.php?id=47854&r=oldversion
Not developer issue:                 
http://bugs.php.net/fix.php?id=47854&r=support
Expected behavior:                   
http://bugs.php.net/fix.php?id=47854&r=notwrong
Not enough info:                     
http://bugs.php.net/fix.php?id=47854&r=notenoughinfo
Submitted twice:                     
http://bugs.php.net/fix.php?id=47854&r=submittedtwice
register_globals:                    
http://bugs.php.net/fix.php?id=47854&r=globals
PHP 4 support discontinued:          http://bugs.php.net/fix.php?id=47854&r=php4
Daylight Savings:                    http://bugs.php.net/fix.php?id=47854&r=dst
IIS Stability:                       
http://bugs.php.net/fix.php?id=47854&r=isapi
Install GNU Sed:                     
http://bugs.php.net/fix.php?id=47854&r=gnused
Floating point limitations:          
http://bugs.php.net/fix.php?id=47854&r=float
No Zend Extensions:                  
http://bugs.php.net/fix.php?id=47854&r=nozend
MySQL Configuration Error:           
http://bugs.php.net/fix.php?id=47854&r=mysqlcfg

Reply via email to