<?php $line = 'ABBEKÅS'; echo 'word is '.$line.PHP_EOL; for($i=0;$i<strlen($line);$i++){ echo 'char '.$line[$i].PHP_EOL; } echo PHP_EOL; for($i=0;$i<mb_strlen($line);$i++){ echo 'char '.mb_substr($line, $i, 1).PHP_EOL; }
You have javascript disabled. You will not be able to edit any code.