Problem Statement
Which of the following are types of arrays in PHP?
Explanation
PHP arrays can be indexed using numbers, associative using keys, or multidimensional for nested data.
Code Solution
SolutionRead Only
$arr = array('a','b'); $map = array('name'=>'John');