Which array having pair of key and value in php
Answers
Answered by
3
Answer:
✴✳✴
Explanation:
Definition and Usage
The each() function returns the current key and value pair from the array array and advances the array cursor. This pair is returned in a four-element array, with the keys 0, 1, key, and value. Elements 0 and key contain the key name of the array element, and 1 and value contain the data.
Similar questions