PHP code example of rarst / wpdatetime
1. Go to this page and download the library: Download rarst/wpdatetime library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
rarst / wpdatetime example snippets
use Rarst\WordPress\DateTime\WpDateTime;
$date = WpDateTime::createFromPost( get_post() );
printf(
'Posted on: <time datetime="%s">%s</time>',
$date->format( DATE_RFC3339 ),
$date->formatDate()
);
// Posted on: <time datetime="2014-11-07T15:36:31+02:00">Ноябрь 7, 2014</time>
use Rarst\WordPress\DateTime\WpDateTimeZone;
// Timezone string.
var_dump( WpDateTimeZone::getWpTimezone()->getName() );
// string(11) "Europe/Kiev"
// GMT offset.
var_dump( WpDateTimeZone::getWpTimezone()->getName() );
// string(6) "+02:00"