curl post 提交大量数据时 接收方有大量换行的解决 方法

1.0 使用以下方法即可

   function cutstr_html($string){
            $string = trim($string);
            $string = preg_replace('/($s*$)|(^s*^)/m', '',$string);
            $string = preg_replace("/ /","",$string);
            return trim($string);
        }

你可能感兴趣的:(curl post 提交大量数据时 接收方有大量换行的解决 方法)