Format time with strftime():
<?php print strftime('%A %b %e: day %j of %Y'); ?>
Output
Friday Mar 13: day 072 of 2026
Find dates with strtotime():
<?php $t strtotime('now + 3 weeks');
    print 
strftime('%c',$t); ?>
Output
Fri Apr 3 04:46:56 2026