php删除/过滤字符串首尾字符串 emer php 2023-12-11 261 trim($data,',');//过滤掉字符串首尾的, ltrim($data,',');//过滤掉字符串首部的, rtrim($data,',');//过滤掉字符串尾部的,