PHP 8.5.0 Alpha 1 available for testing

Voting

: zero plus five?
(Example: nine)

The Note You're Voting On

Miguel Florido
10 years ago
Ansewring to holdoffhunger avoid crc32, the are different results because the crc32(); use the algorithm 'crc32b'. To check this only have to write:

echo hash('crc32b', 'The quick brown fox jumped over the lazy dog.'), "\n";
echo dechex (crc32('The quick brown fox jumped over the lazy dog.'));

And check that both have the same results:

82a34642
82a34642

<< Back to user notes page

To Top