これは文字化けを自動的に中国語に変換するカスタム クラスの変更コードです
class changecode{
private $input;
private $output;
function __construct($input="",$output; ='gb2312'){
$this->input = $input;
$this->output = $output; }
保護された関数 chgcode($str){
if($this->input ! = ''){
$this->str = iconv($input,$output,$str);
}else{
$this->str = mb_convert_encoding($str,$output); function getStr($str){
$this->chgcode($str);
return $this->str; }
function setInput($input){
$this->input = $input; }
関数 setOutput($output){
$this->output = $output; }
関数 getInput(){
return $this->input
}
function getOutput(){
return $this - >output;
}
}
?>
私の質問は、このコードを呼び出して中国語に変換する方法ですが、機能しないようです
$str="??";//これは繁体字中国語です
$test= new changecode();
echo $test -> getStr($str);
繁体字が出力される理由を知りたいです
ディスカッションに返信します
setInput も BIG5 を指定する必要があるためですか?
動作していないようです。助けを求めてオンラインでお待ちください
あなたのプログラムはエンコード専用であり、簡体字と繁体字とは何の関係もありません。 簡体字中国語と繁体字中国語の間の変換には比較表が必要です。
次のような簡体字中国語と繁体字中国語の対応表が必要です。 gb2big.map