Answers for "loop through array of objects to create variables php"

PHP
4

how to iterate through php array

$ar = ['Rudi', 'Morie', 'Halo', 'Miki'];

for ($i=0, $len=count($ar); $i<$len; $i++) {
    echo "$ar[$i] \n";
}
/*
Rudi 
Morie 
Halo 
Miki 
*/
Posted by: Guest on January-16-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

Code answers related to "loop through array of objects to create variables php"

Browse Popular Code Answers by Language