Computer Science, asked by hsharma6080, 1 year ago

What is the syntax of the foreach loop in case of associative array ? Foreach($array as $key => $value) foreach($array as $key : $value) foreach($array as $key :: $value) foreach($array as $key :> $value)

Answers

Answered by Anonymous
0

have this: Array ( [0] => Array ( [f_count] => 1 [uid] => 105 ) [1] => Array ( [f_count] => 0 [uid] => 106 ) [2] => Array ( [f_count] => 2 [uid] => 107 ...

Answered by Anonymous
0

Explanation:

Syntax of foreach loop in case of associative memory

Similar questions