-1
<?php
$dadosJsonDecodificados = ("C:/pasta/arquivojson.json");
foreach($dadosJsonDecodificados->accountData $dadosBank){
$msg = ($dadosBank->accountBalance);
}
$str = implode("\n", $msg);
echo ($str);
?>
Inside the Json Example :
"accountData": [
{
"AccountName" :"Bruno",
"accountBalance": [
1000,
2000,
3000
]
}
]
Result = String:
1000
2000
3000
and if I want to print on the screen like this :
Quantity 1: 1000
Quantity 2: 2000
Quantity 3: 3000
someone could give me an example ? I’m picking up a json file that generates automatically !