Traditional Chinese conversion to Simplified Chinese PHP function _php Foundation

Source: Internet
Author: User
A few days ago I asked at the Oso forum for this source program, no one replied. Finally determined to transplant one such function, thanks to Netizens Keyes provide the Delphi source code for the transplant. The method is called $TXT=BIG5TOGB ($txt).
(Note: the include "data_big5.php" in the source code; This file is an array, in Http://caocao.oso.com.cn/data_big5.zip, please edit the download to Oso, do a link, because this file I will be deleted in a few days.) )

?
/***********************************************************************
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]) >= && (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]) >=) && (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 + + + (ord ($code [1])-161);
}
}
Return (-1);
}

function wordtostring ($code)
{
Return (Chr (Hexdec (substr ($code, 0,2))). Chr (Hexdec (substr ($code, 2,2)));
}

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 ($big 5order[$offset]);
$idx + +;
}
Else
{
$output. = $code [$idx];
}
}
Else
{
$output. = $code [$idx];
}
$idx + +;
}
return ($output);
}
?>

"This article copyright belongs to the author and the Osso net jointly owns, if needs to reprint, please indicate the author and the origin"

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.