php 实现清除文本字符串或html字符串中的多个连续空格的方法,具体代码如下:
/** function 合并多个连续空格 */ function merge_spaces($string){ return str_replace(array(' ',' '),'',$string); }