时间:2021-07-01 10:21:17 帮助过:21人阅读
__author__ = 'jiezhi' import urllib import urllib2 data = {'name': 'jiezhi', 'age': '24'} ret = urllib2.urlopen(url='http://jiezhiblog.com/test.php', data=urllib.urlencode(data)) print ret.read()
__author__ = 'jiezhi' import urllib2 import json data = {'name': 'jiezhi', 'age': '24'} ret = urllib2.urlopen(url='http://jiezhiblog.com/test.php', data=json.dumps(data)) print ret.read()
以上就介绍了PHP处理来自Python的Post的json数据,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。