我需要幫助輸出與python json鍵。我試圖輸出名字「carl」。需要幫助輸出json與python
Python代碼:
from json import loads
import json,urllib2
class yomamma:
def __init__(self):
url = urlopen('http://localhost/name.php').read()
name = loads(url)
print "Hello" (name)
PHP代碼(用於JSON我製造):
<?php
$arr = array('person_one'=>"Carl", 'person_two'=>"jack");
echo json_encode($arr);
在PHP的輸出爲: { 「person_one」: 「卡爾」,」 person_two「:」jack「}
謝謝,虐待現在:) –