Briefing Zend Knowledge

Which function will remove the value 28 from $a?

Given the following array:
<code>
$a = array(28, 15, 77, 43);
</code>
Which function will remove the value 28 from $a?

A.
array_shift()

B.
array_pop()

C.
array_pull()

D.
array_unshift()