Answers for "php trailing comma array"

PHP
1

trim comma from variable in php

rtrim($my_string,',');
Posted by: Guest on October-22-2020
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

Browse Popular Code Answers by Language