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