PHP functions that convert traditional Chinese to Simplified Chinese

Source: Internet
Author: User
Tags strtok
A few days ago, I asked the oso forum if there was any source code and no one replied. Finally, I made up my mind to transplant such a function and thanked the netizen Keyes for providing the Delphi source code for transplantation. The call method is $ txtbig5togb ($ txt ). (Note: the source code in the includedata_big5.php; this file is an array, in the http://caocao.oso.com.cn/d a few days ago I asked the oso forum whether there is this source code, no one replied. Finally, I made up my mind to transplant such a function and thanked the netizen Keyes for providing the Delphi source code for transplantation. The call method is $ txt = big5togb ($ txt ).
(Note: in the source code, include "data_big5.php"; this file is an array, in bytes .)

/*************************************** ********************************
Written by caocao
Caocao@eastday.com
Http://caocao.oso.com.cn

With the help of Keyes
Keyes2000@263.net
Http://my-wjl.scu.edu.cn /~ Keyes
**************************************** *******************************/
Function isbig5 ($ code)
{
If (strlen ($ code)> = 2)
{
$ Code = strtok ($ code ,"");

If (ord ($ code [0]) <161)
{
Return (0 );
}
Else
{
If (ord ($ code [1])> = 64) & (ord ($ code [1]) <= 126 )) | (ord ($ code [1])> = 161) & (ord ($ code [1]) <= 254 )))
{
Return (1 );
}
Else
{
Return (0 );
}
}
}
Else
{
Return (0 );
}
}

Function big5offset ($ code)
{
If (strlen ($ code)> = 2)
{
$ Code = strtok ($ code ,"");
If (ord ($ code [1]) >=64) & (ord ($ code [1]) <= 126 ))
{
Return (ord ($ code [0])-161) * 157 (ord ($ code [1])-64 ));
}
If (ord ($ code [1])> = 161) & (ord ($ code [1]) <= 254 ))
{
Return (ord ($ code [0])-161) * 157 63 (ord ($ code [1])-161 ));
}
}
Return (-1 );
}

Function wordtostring ($ code)
{
Return (chr (hexdec (substr ($ code,). chr (hexdec (substr ($ code ))));
}

Function big5togb ($ code)
{
Include "data_big5.php ";
$ Output = "";
$ Length = strlen ($ code );
$ Code = strtok ($ code ,"");
$ Idx = 0;
While ($ idx <$ length)
{
$ TmpStr = $ code [$ idx]. $ code [$ idx 1];

If (isbig5 ($ tmpStr ))
{
$ Offset = big5offset ($ tmpStr );
If ($ offset> = 0) | ($ offset <= 14757 ))
{
$ Output. = wordtostring ($ big5order [$ offset]);
$ Idx;
}
Else
{
$ Output. = $ code [$ idx];
}
}
Else
{
$ Output. = $ code [$ idx];
}
$ Idx;
}
Return ($ output );
}
?>

[This article is copyrighted by the author and osuo. if you need to reprint it, please indicate the author and its source]

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.