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
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
0
Explanation:
Syntax of foreach loop in case of associative memory
Similar questions