Answers for "convert array in list php with commas"

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
1

how to convert array to string with commas in php

$string = implode(', ', $tags);
Posted by: Guest on September-12-2020

Code answers related to "convert array in list php with commas"

Browse Popular Code Answers by Language