What is the order of foreach loop in PHP?

coptic-folder

New Member
I have an array, for example\[code\]$arr=array( "foo" => "fooval" "boo" => "booval" "roo" => "rooval");\[/code\]and then I want to print all elements in pattern "key is value". This code should do the job:\[code\]foreach($arr as $key => $val) echo $key." is ".$val;\[/code\]Will I get this?\[code\]foo is foovalboo is boovalroo is rooval\[/code\]I mean the order. Is it guaranteed that it will execute in same order as the array was given, or the arrays are sorted somehow?Thanks for any answers.
 
Back
Top