~~~ <?php function getQQNick($qq){ $str = file_get_contents('http://r.pengyou.com/fcg-bin/cgi_get_portrait.fcg?uins='.$qq); $pattern = '/'.preg_quote('0,0,0,"','/').'(.*?)'.preg_quote('",','/').'/i'; preg_match ( $pattern,$str, $result ); return $result[1]; } $instr = getQQNick(1751212020); //echo $instr; //header("content-Type: text/html; charset=Utf-8"); //做一个GBK To UTF-8 echo mb_convert_encoding($instr, "UTF-8", "GBK"); ?> ~~~