Answers for "string to array split by php"

PHP
27

php explode

$colors  = "red,blue,green,orange";
$colorsArray = explode(",", $colors);
Posted by: Guest on June-14-2019
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 "string to array split by php"

Browse Popular Code Answers by Language