Answers for "how to write a for loop that runs through an array in php"

PHP
5

foreach loop in php

<?php
$arr = ['Item 1', 'Item 2', 'Item 3'];

foreach ($arr as $item) {
  var_dump($item);
}

$dict = array("key1"=>"35", "key2"=>"37", "key3"=>"43");

foreach($dict as $key => $val) {
  echo "$key = $val<br>";
}
?>
Posted by: Guest on June-28-2020
0

php loop through array

foreach($array as $item=>$values){
     echo $values->filepath;
    }
Posted by: Guest on July-12-2020

Code answers related to "how to write a for loop that runs through an array in php"

Browse Popular Code Answers by Language