CRC32 (PHP 4> = 4.0.1, PHP 5, PHP 7, PHP 8) CRC32 menghitung polinomial CRC32 dari string
<?php
$checksum = crc32("The quick brown fox jumped over the lazy dog.");
printf("%u\n", $checksum);
?>
SAMER SAEID