Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
    ($year,$month,$day) = Add_Delta_Days($year,$month,$day, -3);
    print join("-", $year,$month,$day)
    
  2. or download this
    #!/usr/bin/perl -w
    
    ...
    
    ($year,$month,$day) = Date::Calc->Add_Delta_Days($year,$month,$day, -3
    +);
    print join("-", $year,$month,$day)