Format time with strftime():
<?php print strftime('%A %b %e: day %j of %Y'); ?>
Output
Saturday Feb 22: day 053 of 2025
Find dates with strtotime():
<?php $t strtotime('now + 3 weeks');
    print 
strftime('%c',$t); ?>
Output
Sat Mar 15 19:30:43 2025