PHP 8.4.24 Released!

Voting

: four plus five?
(Example: nine)

The Note You're Voting On

Chris Lewis
14 years ago
Note that the signed-integer CRC result is only true on 32-bit systems. 64-bit systems return correct CRCs.

A safer way (as recommended by crc32() function page) might be:

if ($file['crc'] < 0)
   $file['crc'] = sprintf("%u",$file['crc']);

<< Back to user notes page

To Top