<?php $Now = new DateTime(); echo $Now->format('Y-m-d') . '\n'; // 2014-06-12 $Duration = new DateInterval('PT1M'); // 1minute $Now->add( $Duration ); echo $Now->format('Y-m-d'); // 2014-07-12 $Duration = new DateInterval('P1D'); // 1Day $Now->sub( $Duration ); echo $Now->format('Y-m-d'); // 2014-05-12
You have javascript disabled. You will not be able to edit any code.