split string on character php code example
Example 1: php foreach string char
//Split int char array
$chars = str_split($str);
//Loop each char
foreach($chars as $char)
{
// your code
}
Example 2: how to split sting in php
<?php
list($user, $pass, $uid, $gid, $extra) =
split(":", $passwd_line, 5);
?>