# PHP实现为post过来的数据转换编码 $info = array(); foreach($_POST as $key => $value){ $info[$key] = iconv("utf-8","gb2312",$value); }
http://www.htmltoo.com/