Sample code for 30+ languages & platforms
PHP Extension

Replace Deprecated GetExpirationDt

Shows how to replace the deprecated GetExpirationDt method.

Chilkat PHP Extension Downloads

PHP Extension
<?php

include("chilkat.php");

$cache = new CkCache();

// ....
// ....

$cache_item_key = 'xyz';

// Instead of this:
// dt1 is a CkDateTime
$dt1 = $cache->GetExpirationDt($cache_item_key);

// Do this:
$dt2 = new CkDateTime();
$dt2->SetFromRfc822($cache->getExpirationStr($cache_item_key));

?>