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

PHP转换字符串编码

程序员文章站 2022-05-19 19:09:52
...
php代码
<?php
function phpcharset($data, $to) {
	if(is_array($data)) {
		foreach($data as $key => $val) {
			$data[$key] = phpcharset($val, $to);
		}
	} else {
		$encode_array = array('ASCII', 'UTF-8', 'GBK', 'GB2312', 'BIG5');
		$encoded = mb_detect_encoding($data, $encode_array);
		$to = strtoupper($to);
		if($encoded != $to) {
			$data = mb_convert_encoding($data, $to, $encoded);
		}
	}
	return $data;
}
?>