最近我在JQuery中使用了一些JSON數據。現在我想在PHP中使用同樣的東西。 例如:PHP Echo顯示完整的JSON行數據不僅我需要
MySQL查詢返回的數據等
$result='{"username":"john","age":"18", "birthdate":"19880221"}';
但是當我回聲在PHP這個數據,如:
echo $result.username;
echo $result.age;
它顯示輸出:
{"username":"john","age":"18", "birthdate":"19880221"}.username
{"username":"john","age":"18", "birthdate":"19880221"}.age
但我想輸出這個:
John
18
您能否包含從MySql中檢索數據的PHP行? – ManseUK