To unset something in an array, you would specify it's key:
$array = array('zero', 'one', 'two');
unset($array[2]); // deletes the 2 => 'two'
$array = array($array, 'one', 'two');
unset($array[0][2]); // deletes the same thing from the now nested array