Answers for "php for each array"

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
1

php foreach array

$arr = array(1, 2, 3);
foreach ($arr as $key => $value) {
    echo "{$key} => {$value} ";
}
Posted by: Guest on March-06-2021
1

php for each schleife

foreach ($name as $key => $value) {
    echo ("Position {$key} enthält {$value}. ");
}
Posted by: Guest on May-29-2020
3

foreach in php

$arr = array(
	'key1' => 'val',
	'key2' => 'another',
	'another' => 'more stuff' 
);
foreach ($arr as $key => $val){
	//do stuff
}

//or alt syntax
foreach ($arr as $key => $val) :
   //do stuff here as well
endforeach;
Posted by: Guest on May-23-2020

Browse Popular Code Answers by Language