$pid = str_replace(',',',',$pid); $pid = str_replace(' ','',$pid);
$pid = str_replace(array(',', ' '), array(',', ''), $pid);
把逗号替换成英文的逗号。 把空格都移除。