Skip to content

Instantly share code, notes, and snippets.

View evan4's full-sized avatar
:electron:
The sky's the limit

Ivan Dedov evan4

:electron:
The sky's the limit
  • Tashkent, Uzbekistan
  • 17:08 (UTC +05:00)
  • LinkedIn in/evan4mc
View GitHub Profile
function replaceNbspWithSpace($content){
$string = htmlentities($content, null, 'utf-8');
$content = str_replace(" ", " ", $string);
$content = html_entity_decode($content);
return $content;
}