Source Code:
(back to article)
<?php $string = 'apple,banana,cherry,date'; $delimiter = ','; $array = explode($delimiter, $string); print_r($array); // Outputs: Array ( [0] => apple [1] => banana [2] => cherry [3] => date )
Result:
Report an issue