Source Code:
(back to article)
<?php $string = "Hello, World!"; $split_string = str_split($string); print_r($split_string); ?>
Result:
Report an issue