Answers for "Loop through an associative array and output the key and the value. in php"

PHP
1

loop through values of hash php

foreach ($array as $key => $val) {
    print "$key = $val\n";
}
Posted by: Guest on February-16-2020
1

php foreach associative array

$arr = array(
  'key1' => 'val1',
  'key2' => 'val2',
  'key3' => 'val3'
);

foreach ($arr as $key => $val) {
  echo "$key => $val" . PHP_EOL;
}
Posted by: Guest on June-01-2020

Code answers related to "Loop through an associative array and output the key and the value. in php"

Browse Popular Code Answers by Language