Source Code:
(back to article)
<?php $array = ['Hello', 'World', '!']; $string = implode('-', $array); echo $string; ?>
Result:
Report an issue