Chinaunix首页 | 论坛 | 博客
  • 博客访问: 899455
  • 博文数量: 1812
  • 博客积分: 90800
  • 博客等级: 元帅
  • 技术积分: 22390
  • 用 户 组: 普通用户
  • 注册时间: 2008-05-03 18:35
文章分类

全部博文(1812)

文章存档

2008年(1812)

我的朋友

分类:

2008-05-03 20:08:52

技术文章


Neo 发表于 April 29, 200403:17 PM


PHP
Javascript 都有 HTML encoding 的函式,编码过的结果虽然类似,但是还是有些微的不同,所以不能互转。

二者的差异可以可参考:
http://php.weblogs.com/php_jscript_vbscript_1

节录如下:

PHP:
urlencode( ) All punctuation, accented characters, and any other non-ASCII characters are replaced with %xx encoding. Spaces converted to .

urldecode( )All punctuation, accented characters, and any other non-ASCII characters are replaced with %xx encoding. Spaces converted to .

Javascript:
Javascript(str) All spaces, punctuation, accented characters, and any other non-ASCII characters are replaced with %xx encoding

那要如何用 PHP 来读取 escape() 编码过的字符串呢?

可以用以下的方式来读取 (范例为 Unicode 解译为 big5)

修改自:

$str = uniDecode($str,'big-5');
 

function uniDecode($str,$charcode){

$text = preg_replace_callback("/%u[0-9A-Za-z]{4}/",toUtf8,$str);

return mb_convert_encoding($text, $charcode, 'utf-8');

}

function toUtf8($ar){

foreach($ar as $val){

$val = intval(substr($val,2),16);

if($val < 0x7F){ // 0000-007F

$c .= chr($val);

}elseif($val < 0x800) { // 0080-0800

$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;

}


Neo 发表于 April 29, 200403:17 PM


PHP
Javascript 都有 HTML encoding 的函式,编码过的结果虽然类似,但是还是有些微的不同,所以不能互转。

二者的差异可以可参考:
http://php.weblogs.com/php_jscript_vbscript_1

节录如下:

PHP:
urlencode( ) All punctuation, accented characters, and any other non-ASCII characters are replaced with %xx encoding. Spaces converted to .

urldecode( )All punctuation, accented characters, and any other non-ASCII characters are replaced with %xx encoding. Spaces converted to .

Javascript:
Javascript(str) All spaces, punctuation, accented characters, and any other non-ASCII characters are replaced with %xx encoding

那要如何用 PHP 来读取 escape() 编码过的字符串呢?

可以用以下的方式来读取 (范例为 Unicode 解译为 big5)

修改自:

$str = uniDecode($str,'big-5');
 

function uniDecode($str,$charcode){

$text = preg_replace_callback("/%u[0-9A-Za-z]{4}/",toUtf8,$str);

return mb_convert_encoding($text, $charcode, 'utf-8');

}

function toUtf8($ar){

foreach($ar as $val){

$val = intval(substr($val,2),16);

if($val < 0x7F){ // 0000-007F

$c .= chr($val);

}elseif($val < 0x800) { // 0080-0800

$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;

}

技术文章 使用 PHP 解析 javascript escape() 编码过的字串使用 PHP 解析 javascript escape() 编码过的字串使用 PHP 解析 javascript escape() 编码过的字串使用 PHP 解析 javascript escape() 编码过的字串使用 PHP 解析 javascript escape() 编码过的字串使用 PHP 解析 javascript escape() 编码过的字串使用 PHP 解析 javascript escape() 编码过的字串使用 PHP 解析 javascript escape() 编码过的字串使用 PHP 解析 javascript escape() 编码过的字串使用 PHP 解析 javascript escape() 编码过的字串使用 PHP 解析 javascript escape() 编码过的字串使用 PHP 解析 javascript escape() 编码过的字串
阅读(208) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~