Calculate CRC32 Checksum using PHP

crc32 function

<?php

$text = 'Hello';
$checksum = crc32($text);

echo $checksum;

Leave a Comment

Cancel reply

Your email address will not be published.