<?php

    $vetor = array("Pera", "Uva", "Melao", "Morango");
    $ultimo = array_pop($vetor);
    $string = implode(', ', $vetor);
    $string.= ' e '.$ultimo.'.';
    echo $string;