Question:Which function would you use to add an element to the beginning of an array?
A array_shift() B array_push(); C $array[0] = "value"; D array_unshift() E array_pop();
+ AnswerD
+ Report