$stack = array("yellow", "red", "green", "orange", "purple"); // delete the last element of an array $removed = array_pop($stack); print_r($stack);