Skip to content

Instantly share code, notes, and snippets.

@guweigang
Created June 30, 2014 12:55
Show Gist options
  • Save guweigang/507ae0c7b03d2332ecdc to your computer and use it in GitHub Desktop.
Save guweigang/507ae0c7b03d2332ecdc to your computer and use it in GitHub Desktop.
全角转半角
<?php
$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