Skip to content

Instantly share code, notes, and snippets.

@chrisyue
Created August 10, 2014 06:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrisyue/a55d068b0beab13fca75 to your computer and use it in GitHub Desktop.
Save chrisyue/a55d068b0beab13fca75 to your computer and use it in GitHub Desktop.
$str = "0123ABCDFWS\",.?<>{}[]*&^%#@!~()+-|:;";
echo "$str";
echo "<br />";
$str = preg_replace('/\xa3([\xa1-\xfe])/e', 'chr(ord(\1)-0x80)', $str);
echo $str;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment