2016-12-22 58 views
-11

我的JSON文件就像如何將數據從JSON文件傳輸到PHP?

{ "A": ["Apple"], 
    "B": ["Ball"], 
    "C": ["Cat"], 
    "D": ["Dog"], 
    "E": ["Elephant"], 
    "F": ["Frog"], 
    "G": ["Got"], 
} 

當我給輸入 - >> ABC在文本框中那麼結果會是一樣

蘋果

可以做什麼?

+9

顯而易見的答案是:「是」 – arkascha

+0

https://www.google.co.za/search?q=Is+it+possible+to+build+SPA(single+page+application)+using+PHP使用+ PHP%2B + AngularJs%3F&aqs = chrome..69i57j69i60.495j0j7&sourceid = chrome&ie = UTF-8 – Reflamer

+0

什麼是%2B + AngularJs%3F&oq = Is + it +可能+ + build + SPA(單頁+頁面應用程序)你想要做什麼?請更明確地回答你的問題 –

回答

0

laravel你喜歡這種方式。 return response()->json($data);

0

我認爲你可以做到這一點,如:

對於JSON格式PHP發送數據時,你用:

$array = array(1,2,3,4,5); 
echo json_encode($array); 

要與PHP JSON格式接收數據,可以使用:

$data = $_GET["x"]; // or 
$data = $_POST["x"]; 
$result = json_decode($data); 

希望能有所幫助。

相關問題