Jyxo\StringUtil::crc PHP Method

crc() public static method

Generates a crc checksum same on 32 and 64-bit platforms.
public static crc ( string $string ) : integer
$string string Input string
return integer
    public static function crc(string $string) : int
    {
        $crc = crc32($string);
        if ($crc & 0x80000000) {
            $crc ^= 0xffffffff;
            $crc++;
            $crc = -$crc;
        }
        return $crc;
    }