我正在使用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
我不知道为什么,但哈希是不同的。我认为这是因为“ã”被收集为 。
你们知道我怎么能处理这件事吗?