Answers for "The explode() function splits a string into an indexed array at a specified separator."

PHP
8

explode comma php

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

Code answers related to "The explode() function splits a string into an indexed array at a specified separator."

Browse Popular Code Answers by Language