As other ways to open date in Portuguese on some servers are problematic, I use the code below. It turns out that now I need to display the current date + 10 days. How to do this?
$meses = array (1 => "Janeiro", 2 => "Fevereiro", 3 => "Março", 4 => "Abril", 5 => "Maio", 6 => "Junho", 7 => "Julho", 8 => "Agosto", 9 => "Setembro", 10 => "Outubro", 11 => "Novembro", 12 => "Dezembro");
$hoje = getdate() ;
$mes = $hoje["mon"];
$nomemes = $meses[$mes];
$ano = $hoje["year"];
echo "$nomemes $ano";