PHPで文字列中の空白(全/半角)を一機に取り除く。

全角スペースも半角スペースもまとめて一機に取り除く方法があったのでメモ。

$str = '文字列';
$str = trim(mb_convert_kana($str, 's'));

これは便利。