php漢字轉碼 GBK到Big5編碼轉換

來源:互聯網
上載者:User
  1. //php漢字轉碼
  2. class qswhBig5{
  3. var $qswhData;
  4. function qswhBig5($filename="qswhBig5.php"){
  5. $this->qswhData=file($filename);
  6. }
  7. function qswhStr($gb,$fail="??"){
  8. /******(qiushuiwuhen 2002-9-6)******/
  9. $ret="";
  10. for($i=0;$i if(($p=ord(substr($gb,$i,1)))>127){
  11. $q=ord(substr($gb,++$i,1));
  12. $tmp=$this->qswhData[$p-128];
  13. for($j=0;$j=$q)break;
  14. if($k==$q)$q=chr(hexdec(substr($tmp,$j+2,2))).chr(hexdec(substr($tmp,$j+4,2)));
  15. else if($fail=="")$q=chr($p).chr($q); else $q=$fail;
  16. }
  17. else
  18. $q=chr($p);
  19. $ret.=$q;
  20. }
  21. return $ret;
  22. }
  23. function qswhFile($filename,$fail="??"){
  24. /******(qiushuiwuhen 2002-9-6)******/
  25. if(!file_exists($filename.".qswh"))copy($filename,$filename.".qswh");
  26. $fp=fopen($filename,"r+");
  27. $tmp=fread($fp,filesize($filename));
  28. rewind($fp);
  29. fwrite($fp,$this->qswhStr($tmp,$fail));
  30. fclose($fp);
  31. }
  32. function qswhDir($dirname,$fail="??"){
  33. /******(qiushuiwuhen 2002-9-6)******/
  34. $d = dir($dirname);
  35. while($entry=$d->read()) {
  36. if($entry=="."||$entry=="..")continue;
  37. $entry=$dirname."/".$entry;
  38. if(is_dir($entry))
  39. $this->qswhDir($entry,$fail);
  40. else{
  41. if(substr($entry,-5)!=".qswh")$this->qswhFile($entry,$fail);
  42. }
  43. }
  44. $d->close();
  45. return $c;
  46. }
  47. }
複製代碼

使用範例:

  1. $words="秋水無恨";

  2. $qswh=new qswhBig5("qswhBig5.php"); //qswhBig5.php,可省參數

  3. echo("

    請選擇編碼Big5查看:".$qswh->qswhStr($words));<li>echo("/n編碼一目錄:".$qswh->qswhDir("test"));<li>echo("/n編碼一檔案:".$qswh->qswhFile("index.htm"));</p><li></ol><em onclick="copycode($('code_L1e'));">複製代碼</em><p>使用說明:qswhStr中第二個參數代表如果沒有對應的Big5將替換的字,如果為空白,則保留該字。將檔案格式化後,記得要修改<meta中的content-type為Big。</p></td></tr></table><li ><i class="layui-icon">&#xe63a;

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.