(PHP ActiveX) Transition from Imap.GetSslServerCert to Imap.GetServerCert
Provides instructions for replacing deprecated GetSslServerCert method calls with GetServerCert. Note: This example requires Chilkat v11.0.0 or greater.
<?php
// For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.Imap')
$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.
// For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.Cert')
$cert = new COM("Chilkat.Cert");
$success = $imap->GetServerCert($cert);
if ($success == 0) {
print $imap->LastErrorText . "\n";
exit;
}
?>
|