__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 $input = file_get_contents("php://input"); var_dump($input); if ($input){ print_r($input); $arr = json_decode($input,true); echo "arr"; print_r($arr); } ?>
위 내용은 Python Post의 json 데이터 처리에 대한 내용을 소개하고 있으며, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.