Source Code:
(back to article)
<?php $string = "one,two,three,four,five"; $delimiter = ","; $split_string = explode($delimiter, $string, 3); print_r($split_string); ?>
Result:
Report an issue