Unity - 使用带有拉丁字符的WWW

时间:2015-03-27 12:52:29

标签: php web unity3d output latin

我正在使用WWW将一些信息发送到.php文件:名称,姓氏和分数。

string post_url = addScoreURL + "idfacebook=" + idfacebook + "&country=" + country + "&name=" + name + "&lastname=" + lastname + "&score=" + score + "&coins="+ coins +"&hash=" + hash;
    Debug.Log (post_url);

    WWW hs_post = new WWW(post_url);

但我在拉丁字符方面遇到了麻烦。我哥哥正在测试,他的名字是“João”。我保存了收到的数据:

http://myurl/addscore.php?idfacebook=99999999991&country=BR&name=Jo�o&lastname=B&score=68941&coins=621&hash=d98faf76226debc83f9b9fb8976a5e22

我不知道为什么,但哈希是不同的。我认为这是因为“ã”被收集为 。

你们知道我怎么能处理这件事吗?

0 个答案:

没有答案