fork(5) download
  1. <?php
  2.  
  3. $json = '{"response":[{"id":1,"first_name":"Павел","last_name":"Дуров","city":{"id":2,"title":"Санкт-Петербург"}},{"id":7,"first_name":"Алексей","last_name":"Кобылянский","city":{"id":1,"title":"Москва"},"hidden":1}]}';
  4.  
  5. foreach( json_decode($json)->response as $item ) {
  6. echo $item->first_name, PHP_EOL;
  7. }
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
Павел
Алексей