Que: In PHP, if $a represents an array with numeric indices, how is the first element accessed?

a. $a[1]
b. $a[0]
c. $a.1
d. $a.0
Answer: $a[0]

Leave a Comment