Print the result of crc32() in PHP
Description
The following code shows how to print the result of crc32().
Example
//from ww w. j a va 2 s. co m
<?php
$str = crc32("Hello World!");
printf("%u\n",$str);
?>
The code above generates the following result.