Answers for "comma deletimed string to allray php"

PHP
2

php change array into comma delimited string

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

remove string after comma in php

preg_replace('/^([^,]*).*$/', '$1', $print);
substr($string, 0, strrpos($string.",", ","));
Posted by: Guest on March-18-2021

Code answers related to "comma deletimed string to allray php"

Browse Popular Code Answers by Language