white space with special characters remove from string in php code example
Example 1: remove whitespace from string php
$str = "\n\n\nHello World!\n\n\n";
echo "With trim: " . trim($str);
Example 2: remove symbolsand spaces php
preg_replace('/[^A-Za-z0-9]/', "", $data)