首页 > 编程 > Python > 正文

Python和php通信乱码问题解决方法

2020-02-23 05:17:53
字体:
来源:转载
供稿:网友
即使在urlencode之前str.decode(“cp936″).encode(“utf-8″)做了编码转换也是没用的。后来查询手册查到一个urllib.quote()函数,用此方法成功解决!
python端:
代码如下:
str = "中文"
str = urllib.quote(str.decode("cp936").encode("utf-8"))
postData = {}
postData['str'] = str
...post请求发送代码...

php端:
代码如下:
$str = urldecode($_POST['str'])
echo $str;

完美解决乱码问题!
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表