fork download
  1. <?php
  2.  
  3. $string = '{"country_Data": [{"country_id": "1","country_name": "India"},{"country_id": "2","country_name": "Saudi Arabia"},{"country_id": "3","country_name": "UAE"}]}';
  4.  
  5. $arr = json_decode($string,true);
  6.  
  7. foreach($arr as $item)
  8. {
  9. foreach($item as $value){
  10. print_r($value['country_id']." ".$value['country_name']."\n");
  11. }
  12.  
  13. }
  14.  
  15. ?>
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
1 India
2 Saudi Arabia
3 UAE