我向网址发出curl请求,得到了这个JSON $data
返回
{"status":200,"message":"Success","data":[{"cpe_mac":"665544332211","device_mac":"223344556677","device_activity":"INACTIVE","dhcp_lease_held":"CONNECTED_DEVICE_DHCP_LEASE_NOT_AVAILABLE","ip_address":"127.0.0.3","vlan_id":1002,"hostname":"babyhost","dhcp_lease_start_time":400,"dhcp_lease_length":600,"interface":"WIRELESS","ssid":"2219","port_ranges":[{"startport":0,"endport":06000:6500}],"last_updated_utc_in_secs":1446061806668}]}
然后,我解码 $raw = json_decode($data, true);
当我打印出来时,我得到null
dd($raw); // null
我只想将json转换为数组并访问它。
非常感谢任何关于此的提示!