Given the following array:
$a = array(28, 15, 77, 43);
Which function will remove the value 28 from $a?
array_shift()
array_pop()
array_pull()
array_unshift()
Submit