Sample code for 30+ languages & platforms
PHP ActiveX

Replace Deprecated GetExpirationDt

Shows how to replace the deprecated GetExpirationDt method.

Chilkat PHP ActiveX Downloads

PHP ActiveX
<?php

$cache = new COM("Chilkat.Cache");

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

$cache_item_key = 'xyz';

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

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

?>