fork download
  1. <?php
  2.  
  3. //$diaSelecionado = $_POST["DiaSelecionado"]; // 11/10/2018
  4.  
  5. $diaSelecionado = '11/10/2018';
  6.  
  7. echo date('d/m/Y', strtotime('+1 week', strtotime(str_replace('/', '-', $diaSelecionado))));
  8.  
  9. echo PHP_EOL;
  10.  
  11. echo date('d/m/Y', strtotime('+2 week', strtotime(str_replace('/', '-', $diaSelecionado))));
Success #stdin #stdout 0.02s 82624KB
stdin
Standard input is empty
stdout
18/10/2018
25/10/2018