Posted by: Pdfprep
Post Date: November 18, 2020
Given the following array:
$a= array(28, 15, 77, 43);
Which function will remove the value 28 from $a?
A . array_shift()
B . array_pop()
C . array_pull()
D . array_unshift()
Answer: A