/** * 多个连续空格只保留一个 * * @param string $string 待转换的字符串 * @return unknown */ static public function merge_spaces ( $string ) { return preg_replace ( "/\s(?=\s)/","\\1", $string ); }
初级程序员
by: linux 发表于:2015-11-02 16:16:52 顶(0) | 踩(0) 回复
preg_replace('/\s+/', ' ', $str)
初级程序员
by: linux 发表于:2015-11-02 16:16:52 顶(0) | 踩(0) 回复
preg_replace('/\s+/', ' ', $str)
回复评论