平成30年3月2日(金曜日)
$string = str_replace(array(" ", " "), "", $string);
// 全角スペースを半角スペース変換
$name = str_replace( " ", " ", $name);
平成30年3月2日(金曜日)
$string = str_replace(array(" ", " "), "", $string);
// 全角スペースを半角スペース変換
$name = str_replace( " ", " ", $name);