欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php字符串编码转换小例子

程序员文章站 2022-04-20 11:05:07
...
  1. function phpcharset($data, $to) {
  2. if(is_array($data)) {
  3. foreach($data as $key => $val) {
  4. $data[$key] = phpcharset($val, $to);
  5. }
  6. } else {
  7. $encode_array = array('ascii', 'utf-8', 'gbk', 'gb2312', 'big5');
  8. $encoded = mb_detect_encoding($data, $encode_array);
  9. $to = strtoupper($to);
  10. if($encoded != $to) {
  11. $data = mb_convert_encoding($data, $to, $encoded);
  12. }
  13. }
  14. return $data;
  15. }
  16. ?>
复制代码