Answers for "php array values to commas list"

PHP
0

create array from string with commas php

$myString = "9,[email protected],8";
$myArray = explode(',', $myString);
print_r($myArray);
Posted by: Guest on November-25-2020

Code answers related to "php array values to commas list"

Browse Popular Code Answers by Language