ID: 9265
Updated by: andrei
Reported By: [EMAIL PROTECTED]
Old-Status: Open
Status: Closed
Bug Type: PCRE related
Assigned To:
Comments:
As far as I remember, 0 has never meant "no limit" - the value for that is -1. But the
documentation does need to be updated.
Previous Comments:
---------------------------------------------------------------------------
[2001-02-14 16:33:50] [EMAIL PROTECTED]
Somewhere in the last few weeks, preg_split changed so that specifiying a limit
parameter of 0 returns the string to be split unchanged. Before that, 0 was seemingly
treated as no limit, meaning that you could safely specify 0 as the limit argument in
order to specify a flag as the fourth argument.
<?php
$foo = 'a|b|c|d';
$m = preg_split('/|/', $foo, 0);
var_dump($m);
?>
will return everything in the same array, whereas if the limit argument is left off
(or increased), the string gets split up. The behavior allowing 0 to be no limit
should be returned, or another safe argument for limit that means no limit documented.
---------------------------------------------------------------------------
ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=9265&edit=2
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]