当前位置: 首页 > 图文教程 > 网络编程 > PHP > 转换中文为unicode 转换unicode到正常文本

PHP
PHP的GD函数imagettftext()要注意默认字符编码
PHP下载CSS文件中的图片
PHP任意图像裁剪成固定大小
PHP实例解析:实现给上传图片加水印图案
网友分享:二十五个顶级PHP模板引擎整理
PHP开发搜索引擎技术全解析
基于MySQL数据库的UTF8中文网站全文检索的实现
使用PHP调用TinyURL API的方法
彻底杜绝PHP的session cookie错误
新手必看的PHP学习入门的一些基础知识
在HTML中利用js调用php的内容
有关 PHP 和 MySQL 时区的一点总结
菜鸟课堂:有效防御PHP木马攻击的技巧
配置PHP站点安全综合教程
基于UML的城轨列车超速防护系统建模
专家预言:PHP将比Java更受开发人员欢迎
PHP CLI模式下的多进程应用
PHP企业级应用之WebService续篇
用php定制404错误页面 并发信通知管理员
为Vista/Win08中的IIS7添加PHP支持

PHP 中的 转换中文为unicode 转换unicode到正常文本


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-13   浏览: 79 ::
收藏到网摘: n/a

复制代码 代码如下:

'//转换中文为unicode
function URLEncoding(vstrIn)
dim i
dim strReturn,ThisChr,innerCode,Hight8,Low8
strReturn = ""
for i = 1 to Len(vstrIn)
ThisChr = Mid(vStrIn,i,1)
If Abs(Asc(ThisChr)) < &HFF then
strReturn = strReturn & ThisChr
else
innerCode = Asc(ThisChr)
If innerCode < 0 then
innerCode = innerCode + &H10000
end If
Hight8 = (innerCode and &HFF00)\ &HFF
Low8 = innerCode and &HFF
strReturn = strReturn & "%" & Hex(Hight8) & "%" & Hex(Low8)
end If
next
URLEncoding = strReturn
end function
'//转换unicode到正常文本
function bytes2BSTR(vIn)
dim i
dim strReturn,ThisCharCode,nextCharCode
strReturn = ""
for i = 1 to LenB(vIn)
ThisCharCode = AscB(MidB(vIn,i,1))
If ThisCharCode < &H80 then
strReturn = strReturn & Chr(ThisCharCode)
else
nextCharCode = AscB(MidB(vIn,i+1,1))
strReturn = strReturn & Chr(CLng(ThisCharCode) * &H100 + CInt(nextCharCode))
i = i + 1
end If
next
bytes2BSTR = strReturn
end function
function getText(oReq,url)
on error resume next
'//创建XMLHTTP对象
if oReq is nothing then
set oReq = CreateObject("MSXML2.XMLHTTP")
end if
if not oReq is nothing then
oReq.open "get",url,false
oReq.send
if oReq.status = 200 then
getText = bytes2BSTR(oReq.responseBody)
else
getText = ""
end if
else
getText = ""
end if
end function