Calculate Adler-32 Checksum using PHP September 15, 2020 PHP 0 Comments 1197 Views hash function <?php $text = 'Hello'; $checksum = hexdec(hash('adler32', $text)); echo $checksum;
Leave a Comment
Cancel reply