Source Code:
(back to article)
<?php $myString = "9,admin@example.ru,8"; $myArray = explode(',', $myString); print_r($myArray); ?>
Result:
Report an issue