Is it possible to remove spaces from existing images? [closed]

You can test flowing code

$img_space="something icon.png";
$img_without_space = preg_replace('/\s+/', '', $im);
echo $image;

tech