fork download
  1. <?php
  2.  
  3. $values = json_decode('{ "phone": [ "123", "456", "789"]}', true);
  4. foreach ($values['phone'] as $key => $value) {
  5. echo "$key: $value\n";
  6. }
Success #stdin #stdout 0.02s 24448KB
stdin
Standard input is empty
stdout
0: 123
1: 456
2: 789