Answers for "foreach loop create and assign array values 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 assign an array inside a foreach loop

$input = array("teamA","teamB","teamC");
$data = [];
foreach($input as $value){
    $assign = "50"; /* The data just temp */
    $data[$value] = $assign;
}

echo $data["teamA"];
Posted by: Guest on July-26-2021

Code answers related to "foreach loop create and assign array values php"

Browse Popular Code Answers by Language