/ Published in: PHP
convert any value into an id-string
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
{ //Create unsigned crc //Build a string representing the crc32 $result=""; while ($input > 0) { //Use only a-z //Decrease value $input=$input >> 2; } //Done return($result); }