Michael Johnston wrote: > ah yes -- turns out that "if (strlen ($str) > x))" is slower enough then > "if (isset ($str[x]))" that you will notice the difference in big loops. Kasper reported problems with isset($str[x]) in PHP5, he uses strlen($str[x]) instead. Masi