Sample code for 30+ languages & platforms
PHP Extension

Transition from Email.GetDt to Email.EmailDateStr

Provides instructions for replacing deprecated GetDt method calls with EmailDateStr.

Chilkat PHP Extension Downloads

PHP Extension
<?php

include("chilkat.php");

$email = new CkEmail();

// ...
// ...

// ------------------------------------------------------------------------
// The GetDt method is deprecated:

// dateTimeObj is a CkDateTime
$dateTimeObj = $email->GetDt();
if ($email->get_LastMethodSuccess() == false) {
    print $email->lastErrorText() . "\n";
    exit;
}

// ...
// ...

// ------------------------------------------------------------------------
// Do the equivalent using EmailDateStr.

$dt = new CkDateTime();
$dt->SetFromRfc822($email->emailDateStr());

?>