php remove comma from the end of the string code example
Example 1: remove last comma from string php
rtrim($my_string, ',');
Example 2: remove string after comma in php
preg_replace('/^([^,]*).*$/', '$1', $print);
substr($string, 0, strrpos($string.",", ","));