What does it mean in PHP to traverse arrays?

947 views Asked by At

I was wondering what does it mean in layman's terms to traverse php arrays

2

There are 2 answers

0
Ignacio Vazquez-Abrams On

To examine each element in turn, possibly performing an operation upon it.

0
aioobe On

To traverse a data structure (regardless of programming language or specific data structure) is to "go through it". That is, in order to for instance inspect each element, transform every second element, remove each odd looking element, print each element and so on, you need to traverse the elements.