How to remove (that are hidden) and SPACES in below text but
<br>
i tested:
trim($string)
str_replace(' ', '', $string)
i used some regex => NOT WORKED
<br>????? ????: ?????? ?? ???? ??? ????
UPDATE: Thanks
This solution will work, I tested it:
$string = htmlentities($content, null, 'utf-8'); $content = str_replace(" ", "", $string); $content = html_entity_decode($content);
1.4m articles
1.4m replys
5 comments
57.0k users