Sample code for 30+ languages & platforms
PHP ActiveX Requires Chilkat v11.0.0+

Transition from Imap.GetSslServerCert to Imap.GetServerCert

Provides instructions for replacing deprecated GetSslServerCert method calls with GetServerCert.

Chilkat PHP ActiveX Downloads

PHP ActiveX
<?php

$success = 0;

$imap = new COM("Chilkat.Imap");

//  ...
//  ...

//  ------------------------------------------------------------------------
//  The GetSslServerCert method is deprecated:

// certObj is a Chilkat.Cert
$certObj = $imap->GetSslServerCert();
if ($imap->LastMethodSuccess == 0) {
    print $imap->LastErrorText . "\n";
    exit;
}

//  ...
//  ...

//  ------------------------------------------------------------------------
//  Do the equivalent using GetServerCert.
//  Your application creates a new, empty Cert object which is passed 
//  in the last argument and filled upon success.

$cert = new COM("Chilkat.Cert");
$success = $imap->GetServerCert($cert);
if ($success == 0) {
    print $imap->LastErrorText . "\n";
    exit;
}


?>