Answers for "get array value in string with comma php"

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 "get array value in string with comma php"

Browse Popular Code Answers by Language