<?php

$str = "1  \r\n2";
$new_str = preg_replace("/\s+/u", " ", $str);
echo $new_str;