|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-06-20 10:16 UTC] derick@php.net
[2001-07-22 13:20 UTC] andy@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 21:00:02 2025 UTC |
<? $var[0] = "text0"; $var[1] = "text1"; $var[2] = "text2"; $var[3] = "text3"; $var[4] = "text4"; $co = "0"; while (($var["$co"]) == TRUE) { $some = $var[$co]; echo $var["$co"] . " " . strlen($var[$co]) . " " . strtok($some) . "<br>" ; $co++; } ?>