Source Code:
(back to article)
<?php $fruits = ["apple", "banana", "orange"]; $fruit_string = join(", ", $fruits); echo $fruit_string;
Result:
Report an issue