fork download
  1. <?php
  2. function date_down($input_date){
  3. return date("Y-m-d",strtotime('-1 day',strtotime($input_date)));
  4. }
  5. $date='2017-09-25';
  6. echo "<a href='Dev/Update_date_shortfall.php?date=" . date_down($date) . "'>Down 1: </a>";
  7. ?>
Success #stdin #stdout 0.01s 83904KB
stdin
Standard input is empty
stdout
<a href='Dev/Update_date_shortfall.php?date=2017-09-24'>Down 1: </a>