Answers for "array to comma seperated string php"

PHP
4

array to string separated by comma php

$arr = array ( 0 => "lorem", 1 => "ipsum", 2 => "dolor");

$str = implode (", ", $arr);
Posted by: Guest on September-22-2020
1

php change array into comma delimited string

$tags = implode(', ', array('tag1','tag2','tag3','tag4'));
Posted by: Guest on June-05-2020

Code answers related to "array to comma seperated string php"

Browse Popular Code Answers by Language