/**
 * Generate the crc32 polynomial from the input string.
 *
 * @return int Returns crc32 polynomial from the input string.
 */
public function crc32(): int

Examples

$result = Strings::create('test')->crc32();

echo $result;

The above example will output:

3632233996

Getting Started

Methods