0

RSSAll Entries in the "PHP" Category

How to work with arrays in PHP

What is an array? Arrays are common to almost every programming language. An array is simply an ordered map of values, indexed so you can find these values, called elements. These elements can be of multiple datatypes, and can be ordered any way you want. Array ( [a] => 1 [b] => 2 [c] => [...]