(PHP Extension) DateTime - Get in ISO 8601 Compatible Format
Demonstrates the GetAsIso8601 method to return the date/time in an ISO 8601 compatible format.
Note: This example is only valid in Chilkat v9.5.0.65 or later.
<?php
// The version number (9_5_0) should match version of the Chilkat extension used, omitting the micro-version number.
// For example, if using Chilkat v9.5.0.48, then include as shown here:
include("chilkat_9_5_0.php");
$dateTime = new CkDateTime();
$dateTime->SetFromCurrentSystemTime();
$bLocal = false;
print 'YYYY-MM-DD: ' . $dateTime->getAsIso8601('YYYY-MM-DD',$bLocal) . "\n";
print 'YYYY-MM-DDThh:mmTZD: ' . $dateTime->getAsIso8601('YYYY-MM-DDThh:mmTZD',$bLocal) . "\n";
print 'YYYY-MM-DDThh:mm:ssTZD: ' . $dateTime->getAsIso8601('YYYY-MM-DDThh:mm:ssTZD',$bLocal) . "\n";
// Sample output:
// YYYY-MM-DD: 2016-12-02
// YYYY-MM-DDThh:mmTZD: 2016-12-02T07:04Z
// YYYY-MM-DDThh:mm:ssTZD: 2016-12-02T07:04:34Z
?>
|