Generate XXH32 Hash using PHP

hash function

<?php

$text = 'Hello';
$digest = hash('xxh32', $text);

echo $digest;

Note: since PHP 8.1.

Leave a Comment

Cancel reply

Your email address will not be published.