欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-11-03 21:30:04
即使在urlencode之前str.decode(“cp936″).encode(“utf-8″)做了编码转换也是没用的。后来查询手册查到一个urllib.quote()函...
即使在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;

完美解决乱码问题!