PHP Indexed Arrays
PHP Indexed Arrays In indexed arrays each item has an index number. By default, the first item has index 0, the second item has item 1, etc. ExampleGet your own PHP Server Create and display an indexed array: $cars = array("Volvo", "BMW", "Toyota"); var_dump($cars); Try it Yourself » Access Indexed Arrays To access an array item you can refer to the index number. Example...
0 Comments 0 Shares 4K Views 0 Reviews
Sponsored