php服務端處理json和陣列的組合

纳闷發表於2024-11-24

客戶端,微信小程式:
json和陣列的組合資料結構
dataRoServer = {"d":[{'a':1},{},{}..]}

wx.request({
        header:{'content-type': 'application/x-www-data-urlencoded'},
        url: 'http://192.168.1.3/save_pct.php',
        method:"POST",
        data:{
          d:dataRoServer
        },

服務端:
$d = file_get_contents('php://input'); $a= json_decode($d,true)['d'];

透過$a[0]['a']、$a[1]、$a[2],獲取具體值。

相關文章