Join Array Elements into String using PHP September 22, 2020 PHP 0 Comments 583 Views implode function <?php $data = ['First', 'Second', 'Third']; $text = implode(',', $data); echo $text;
Leave a Comment
Cancel reply