Skip to content

Instantly share code, notes, and snippets.

@LiangWei88
Created July 4, 2017 11:43
Show Gist options
  • Select an option

  • Save LiangWei88/a48fcdaf5b047f0ca19b562e2fab3f51 to your computer and use it in GitHub Desktop.

Select an option

Save LiangWei88/a48fcdaf5b047f0ca19b562e2fab3f51 to your computer and use it in GitHub Desktop.
function replaceNbspWithSpace($content){
$string = htmlentities($content, null, 'utf-8');
$content = str_replace(" ", " ", $string);
$content = html_entity_decode($content);
return $content;
}
@josephDev123
Copy link

this really helps. thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment