Heim >Backend-Entwicklung >PHP-Tutorial >registerstartupscript php 正确解码javascript中通过escape编码后的字符

registerstartupscript php 正确解码javascript中通过escape编码后的字符

WBOY
WBOYOriginal
2016-07-29 08:41:48894Durchsuche

这是很久以前收集的一个,不知道谁写的了,但经过测试没有问题~
JavaScript代码

复制代码 代码如下:


function phpUnescape($escstr)
{
preg_match_all("/%u[0-9A-Za-z]{4}|%.{2}|[0-9a-zA-Z.+-_]+/", $escstr, $matches);
$ar = &$matches[0];
$c = "";
foreach($ar as $val)
{
if (substr($val, 0, 1) != "%")
{
$c .= $val;
} elseif (substr($val, 1, 1) != "u")
{
$x = hexdec(substr($val, 1, 2));
$c .= chr($x);
}
else
{
$val = intval(substr($val, 2), 16);
if ($val {
$c .= chr($val);
} elseif ($val {
$c .= chr(0xC0 | ($val / 64));
$c .= chr(0x80 | ($val % 64));
}
else // 0800-FFFF
{
$c .= chr(0xE0 | (($val / 64) / 64));
$c .= chr(0x80 | (($val / 64) % 64));
$c .= chr(0x80 | ($val % 64));
}
}
}
return $c;
}


escape编码后:

复制代码 代码如下:


%u6D4B%u8BD5www.jb51.net%22%22%27%27%3C%3E%26%26


解码后:

复制代码 代码如下:


测试www.jb51.net""''&&

以上就介绍了registerstartupscript php 正确解码javascript中通过escape编码后的字符,包括了registerstartupscript方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn