Dans $data j'ai:
array(2) { ["orders"]=> array(1) { [0]=> array(6) { ["id"]=> int(22476) ["price"]=> int(1290) ["contents"]=> array(0) { } ["taxes"]=> array(1) { [0]=> array(4) { ["rate"]=> int(1000) ["name"]=> string(6) "10.00%" ["amount"]=> int(117) ["amountExcludingTax"]=> int(1173) } } ["delivery_started"]=> NULL ["customer"]=> NULL } } ["errno"]=> int(0) }
un exemple de ce que contient $header:
array(1) { [0]=> int(0) }
je suis parti d'un unique élément dans mon fichier json:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| {
"orders": [{
"id": 22476,
"price": 1290,
"contents": [],
"taxes": [{
"rate": 1000,
"name": "10.00%",
"amount": 117,
"amountExcludingTax": 1173
}],
"delivery_started": null,
"customer": null
}],
"errno": 0
} |
Partager