Answers for "show arrays values with for foreach 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

array foreach only show value in php

foreach ($a as $index => $v) {
Posted by: Guest on July-01-2021

Browse Popular Code Answers by Language