Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 Android 应用程序中,我使用这种方法:
URLDecoder.decode(this.name,"UTF-8")
它解码从我的服务器端发送的名称,在 PHP 中,我使用:
urlencode($name);
显然,这是行不通的。我希望名字以民族字符显示。你能帮我解决这个问题吗?提前致谢。
在服务器端尝试:
urlencode(utf8_encode($name));