php iterate array keys

Solutions on MaxInterview for php iterate array keys by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "php iterate array keys"
Jacopo
24 Feb 2016
1foreach ($arr as $key => $value) {
2    echo "{$key} => {$value} ";
3    print_r($arr);
4}