Skip to content

Instantly share code, notes, and snippets.

@datacodesolutions
Created September 15, 2012 23:58
Show Gist options
  • Save datacodesolutions/3730436 to your computer and use it in GitHub Desktop.
Save datacodesolutions/3730436 to your computer and use it in GitHub Desktop.
Clean Text
function ($str) {
$working = json_encode($str);
$working = preg_replace('/\\\u([0-9a-z]{4})/', '&#x$1;', $working);
return json_decode($working);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment