Generate XXH64 Hash using PHP

hash function

<?php

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

echo $digest;

Note: since PHP 8.1.

Leave a Comment

Cancel reply

Your email address will not be published.