How to remove (that are hidden) and SPACES in below text but
This solution will work, I tested it:
$string = htmlentities($content, null, 'utf-8'); $content = str_replace(" ", "", $string); $content = html_entity_decode($content);