Answers for "php array into comma separated string"

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

Code answers related to "php array into comma separated string"

Browse Popular Code Answers by Language