$string="test test test test test"; $arr=split(" ",$string); for($i=0;$i<200;$i++) { echo $arr[$i]; }
<?php for($last=$i=0; ($last=strpos(' ',$str,$last+1)!==false)&&($i!=200); $i++); echo substr($str, 0, $last); ?>
($last=strpos($str, ' ', $last+1))