Answers for "how can we foreach loop under add for loop in php"

PHP
9

foreach loop array php

foreach (array as $value){ 
  //code to be executed; 
  print("value : $value");
} 

foreach (array as  $key => $value){ 
  //code to be executed; 
  print("key[$key] => $value");
}
Posted by: Guest on April-12-2020
0

php iterate through a loop

<?php
 
$scores = [1,2,3];
foreach ($scores as $score) {
 echo $score;
}
Posted by: Guest on April-26-2020

Code answers related to "how can we foreach loop under add for loop in php"

Browse Popular Code Answers by Language