<?php
function removeItemString($str, $item) {
$parts = explode(',', $str);
while(($i = array_search($item, $parts)) !== false) {
unset($parts[$i]);
}
return implode(',, $parts);
}
<?php
$mystring = 'cat,mouse,dog,horse';
$result_string = removeItemString($mystring, "mouse");
echo "Input String: ".$mystring;
echo “Output String: ".$result_string;
?>
Input String: cat,mouse,dog,horse
Output String: cat,dog,horse