关于ajax无法返回php中文解决办法。。

header('Content-type: text/html;charset=GBK');
echo " 我来了";

或者
echo iconv('gbk', 'utf-8', " 我来了");

两者都行。
如履薄冰