|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-02-19 13:02 UTC] jan@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 30 20:00:01 2025 UTC |
When i try this code , i can't get more than the 9th result. <? $string = "abcdefghijklmnopqrstuvwxyz"; ereg ("^(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)(.).*$", $string, $buffer) ; print $string."<BR>"; $i=1; while ($i<20){ print "$i : $buffer[$i]<br>"; $i++; } ?> Thanks.