php实现繁简转换
摘要:
class Big5_GB2312_Transfer{ private $utf8_gb2312; private $utf8_big5; public function __construct(){ $this->utf8_gb2312 = file_get_contents('./gb2312.map'); $this->utf8_big5 = file_get_contents('./big5.map'); } public function c2t($str) { $str_t = ''; ... 阅读全文
posted @ 2012-08-02 16:15 ianarfa 阅读(400) 评论(0) 推荐(0) 编辑