|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1998-02-16 16:45 UTC] jim
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 01:00:01 2025 UTC |
In the Web server the documentation of split() contradicts itself: In the description the order of parameters is reversed with respect to the example given. The example works as advertised on my 3.0b3-dev: ----- kk@kundera:~/Kunden/hobby $ ~/bin/php <?php $p = "kris:x:103:100:lall laber"; $q = split(":", $p); print $q[0]; Content-type: text/html kris kk@kundera:~/Kunden/hobby $ ----- but in the Description it is: array split(string string, string pattern, int limit); which is just the other way around. Kristian