首頁 > 後端開發 > php教程 > php字串編碼轉換函數 可以自動辨識原始編碼

php字串編碼轉換函數 可以自動辨識原始編碼

WBOY
發布: 2016-07-25 08:53:52
原創
739 人瀏覽過
  1. /**
  2. * 数据编码转换
  3. * @param array/string $data 数组
  4. * @param string $output 转换后的编码
  5. */
  6. function array_iconv($data,$output = 'utf-8') {
  7. $encode_arr = array('UTF-8','ASCII','GBK','GB2312','BIG5','JIS','eucjp-win','sjis-win','EUC-JP');
  8. $encoded = mb_detect_encoding($data, $encode_arr);//自动判断编码
  9. if (!is_array($data)) {
  10. return mb_convert_encoding($data, $output, $encoded);
  11. } // bbs.it-home.org
  12. else {
  13. foreach ($data as $key=>$val) {
  14. if(is_array($val)) {
  15. $data[$key] = array_iconv($val, $input, $output);
  16. } else {
  17. $data[$key] = mb_convert_encoding($data, $output, $encoded);
  18. }
  19. }
  20. return $data;
  21. }
  22. }
复制代码


來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板