一个php编码转换类的问题

WBOY
发布: 2016-06-23 13:28:30
原创
943 人浏览过

这是一段实现乱码自动转换为中文的自定义类changcode
class changecode{
private $str;
private $input;
private $output;
function __construct($input="",$output='gb2312'){
$this->input = $input;
$this->output = $output;
}
protected function 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;
}
function setOutput($output){
$this->output = $output;
}
function getInput(){
return $this->input;
}
function getOutput(){
return $this->output;
}
}

?>
我的问题是怎么调用这段代码实现转换为中文貌似不管用
$str="??";//这是繁体字
$test=new changecode();
echo $test -> getStr($str);

我想知道为什么还是输出繁体字


回复讨论(解决方案)

是不是因为setInput也要指定BIG5呢?

好像也不管用啊,求助,在线等

你这个程序只是转编码,与简繁没有关系。
简繁转换是需要有对照表的。

贴出的程序转码而已,繁体转简体参照
http://download.csdn.net/detail/very68com/5895009

你需要有个简繁对应表,例如gb2big.map

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板