Answers for "how to use array in php loop"

PHP
0

php loop through array

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

for each php

<?php
$array = [
    [1, 2],
    [3, 4],
];

foreach ($array as list($a, $b)) {
    // $a contains the first element of the nested array,
    // and $b contains the second element.
    echo "A: $a; B: $b\n";
}
?>
Posted by: Guest on October-19-2020

Code answers related to "how to use array in php loop"

Browse Popular Code Answers by Language