Skip to content

Instantly share code, notes, and snippets.

@Anye
Created July 25, 2014 01:43
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 Anye/33eb5f15d8db8dc907b4 to your computer and use it in GitHub Desktop.
Save Anye/33eb5f15d8db8dc907b4 to your computer and use it in GitHub Desktop.
json encode 兼容中文
function JSON($data)
{
arrayRecursive($data, 'urlencode', true);
$json = json_encode($data);
return urldecode($json);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment