Answers for "iterate through an array php"

PHP
13

php loop through array

foreach (array_expression as $value)
    statement
foreach (array_expression as $key => $value)
    statement
Posted by: Guest on May-26-2020
1

php loop array

<?php
$arr = array(1, 2, 3, 4);
foreach ($arr as &$value) {
    $value = $value * 2;
}
// $arr is now array(2, 4, 6, 8)
unset($value); // break the reference with the last element
?>
Posted by: Guest on April-28-2020

Code answers related to "iterate through an array php"

Browse Popular Code Answers by Language