Answers for "php split string to character array"

PHP
3

php split string into array of characters

//Split int char array
$chars = str_split($str);

//Loop each char
foreach($chars as $char)
{
    // your code
}
Posted by: Guest on March-23-2020
0

how to split sting in php

<?php
list($user, $pass, $uid, $gid, $extra) =
    split(":", $passwd_line, 5);
?>
Posted by: Guest on October-26-2020

Code answers related to "php split string to character array"

Browse Popular Code Answers by Language