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

PHP
精通PHP的十大要点
从SQL server中将数据库导入Mysql数据库
使用PHP程序直接调用文本文件的内容实例
增加PHP的Session存储和处理能力
关于PHP操作文件的一些FAQ总结
PHP程序开发的原则汇总
PHP开发者必不可少的五个发展要素
PHP数组读取的循环操作
PHP识别24位BMP的验证码
PHP开发人员应熟悉的五个概念
PHP网站开发需要掌握的10个技巧
三种解决PHP乱码问题的办法
PHP下载文件名乱码问题详解
PHP安全之Register Globals
PHP构建语义Web CRUD操作
40条技巧优化php代码
xml+php动态载入与分页
PHP安全之错误报告
网页中PHP脚本中include文件报错解决方法
php分页类 只用传入总页数

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


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-13   浏览: 83 ::
收藏到网摘: 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