解决php json中文转转码问题

function Json_Display_CHS($data)
		{
					return decodeUnicode(json_encode($data));
		}
		
		function decodeUnicode($data)
		{
				return preg_replace_callback('/\\\\u([0-9a-f]{4})/i',
					create_function(
						'$matches',
						'return mb_convert_encoding(pack("H*", $matches[1]), "UTF-8", "UCS-2BE");'
					),
					$data);
		}


你可能感兴趣的:(解决php json中文转转码问题)