Answers for "php text split words and array"

PHP
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
-2

how to split string into array php

string = ".hidden_file"
str_split(string); //split char by char
Posted by: Guest on June-03-2021

Browse Popular Code Answers by Language