Which function will remove the value 28 from $a? seenagape 9 years ago 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() ← Previous question Next question →