-
In PHP, how is the first element accessed if $a represents an array with numeric indices?
-
- $a[0].
- $a[1].
- $a.0
- $a.1
- None of these
Correct Option: A
If $a represents an array with numeric indices, its elements are accessed as $x[0], $x[1], and so on. In general terms, each element at the position i is accessed and used as $a[i – 1].