PHP解码被JS中escape函数unicode编码的数据

function unicodeDecode($data)
{  
	$mapper = function ($match) {
	  return mb_convert_encoding(pack('H*', $match[1]), 'UTF-8', 'UCS-2BE');
	};

	$rs = preg_replace_callback('/%u([0-9a-f]{4})/i', $mapper, $data);

	return $rs;
}


你可能感兴趣的:(escape,php解码)