<?php $str = 'qw qw qw qw qw qw qw q w qw qw qw'; $str = str_replace(' ','',$str); $str = str_replace("\r\n",'',$str); echo $str; ?>
<?php $str = 'qw qw qw qw qw qw qw q w qw qw qw'; $str = preg_replace("# |\r\n#",'',$str); echo $str; ?>