Sample code for 30+ languages & platforms
PHP ActiveX

Get Version of Chilkat

Demonstrate how to find out the version of Chilkat at runtime.

Chilkat PHP ActiveX Downloads

PHP ActiveX
<?php

// Most Chilkat classes include a Version property.
// To find the version of Chilkat, such as "9.5.0.94",
// instantiate the object and examine the Version property.

// For example:
$sftp = new COM("Chilkat.SFtp");
$chilkatVersion = $sftp->Version;
print $chilkatVersion . "\n";

// Most other Chilkat classes also have the Version property
// For example:
$json = new COM("Chilkat.JsonObject");
print $json->Version . "\n";

?>