Syntax of crc32 in PHP
int crc32(string value)
Calculates and returns the cyclic redundancy checksum (CRC) for value.
<?php
$checksum = crc32("The quick brown fox jumped over the lazy dog.");
printf("%u\n", $checksum);
?>
int crc32(string value)
Calculates and returns the cyclic redundancy checksum (CRC) for value.
<?php
$checksum = crc32("The quick brown fox jumped over the lazy dog.");
printf("%u\n", $checksum);
?>