PHP Indexed Arrays
PHP Indexed Arrays are arrays where each element is assigned an index, which is usually a number starting from 0 by default. These are the most common type of arrays in PHP.
Creating Indexed Arrays
There are a few ways to create indexed arrays in PHP:
1. Using array()
function
2. Using short array syntax (PHP 5.4+)
3. Assigning values manually
Accessing Elements
You can access an element by its index: