<?php

$cesta = array("laranja", "banana", "melancia", "morango");
$fruta = array_pop($cesta);
print_r($cesta);
$cesta[] = "novo";
print_r($cesta);