Answers for "loop through an associative array 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 loop through array

$letters = ['a','b','c'];
foreach ($letters as $item) {
  echo $item;
}
Posted by: Guest on October-01-2020
0

loop through values of hash php

<?php
    while (list($var, $val) = each($array)) {
        print "$var is $val\n";
    }
?>
Posted by: Guest on February-16-2020

Code answers related to "loop through an associative array php"

Browse Popular Code Answers by Language