Answers for "create a string out of comma-del text php"

PHP
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 "create a string out of comma-del text php"

Browse Popular Code Answers by Language