字符串操作
<p>PHP字符串操作(string替换、删除、截取、复制、连接、比较、查找、包含、大小写转换、切割成数组等)
<a href="https://www.cnblogs.com/huangcong/p/4596246.html">https://www.cnblogs.com/huangcong/p/4596246.html</a></p>
<pre><code>$string = '5,6,,7';
$id = $this->request->id;
$string = preg_replace('/[,]?+['.$id.']+[,]?/i','',$string);
</code></pre>