Snippets: Date/Time

Date/Time Cheat Sheet

format description value z day of the year 01 to 365 N day of the week from Monday to Sunday 1 to 7 j day of [...]
Date/Time | Type: PHP

Date/Time Examples

$today = date('Ymd'); //string $testdate = get_field( 'test_date' ); //string $testerdate = DateTime::createFromFormat( 'Ymd', $testdate ); //convert string to object echo '<p>Today: '.$today.'</p> //string echo '<p>Test [...]
ACF, Date/Time, PHP | Type: PHP

Rendering a Readable Date from Start Date

$mtgdate = DateTime::createFromFormat('Ymd', $startdate)->format('F j, Y'); echo '<p class="read-more"><a href="'.$formurl.'?mtgdate='.$mtgdate.'">'.$linktext.'</a></p>';
Date/Time, Forms, PHP | Type: PHP