Demystifying PHP’s Array Key/Index

According to php.net manual: An array in PHP is actually an ordered map. A map is a type that associates values to keys. A key may be either an integer or a string. If a key is the standard representation of an integer, it will be interpreted as such (i.e. “8” will be interpreted as …

Read more