Sample code for 30+ languages & platforms
PHP ActiveX

Example: Crypt2.CrcFile method

Demonstrates how to call the CrcFile method.

Chilkat PHP ActiveX Downloads

PHP ActiveX
<?php

$crypt = new COM("Chilkat.Crypt2");

$filePath = 'c:/temp/someFile.dat';

$crc32 = $crypt->CrcFile('crc-32',$filePath);
print $crc32 . "\n";

$crc8 = $crypt->CrcFile('crc8',$filePath);
print $crc8 . "\n";

?>