1. php中 utf8转gbk方式 $result=iconv("utf8","gbk",$字符串);2. php中 gbk转utf8方式$result=iconv("gbk","utf8",$字符串);