fork(1) download
  1. <?php
  2. $jsonstring = ' {"Pessoas" :
  3. [
  4. {"Nome": "Welson Play", "Idade":19},
  5. {"Nome": "Stephanie", "Idade":15},
  6. {"Nome": "João Pedro", "Idade":17}
  7. ]
  8. }';
  9.  
  10. $obj = json_decode($jsonstring);
  11.  
  12. foreach($obj as $chave => $vlor) {
  13. echo $chave;
  14. }
Success #stdin #stdout 0.02s 24448KB
stdin
Standard input is empty
stdout
Pessoas