Random Number
var randomNum:Number = Math.floor(Math.random() * (max - min + 1)) + min;
return randomNum;
}
11381 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
function str_hex($string){ $hex=''; for ($i=0; $i < strlen($string); $i++){ $hex .= dechex(ord($string[$i])); } return $hex; } function hex_str($hex){ $string=''; for ($i=0; $i < strlen($hex)-1; $i+=2){ $string .= chr(hexdec($hex[$i].$hex[$i+1])); } return $string; } // example: $hex = str_hex("test sentence..."); // $hex contains 746573742073656e74656e63652e2e2e print hex_str($hex); // outputs: test sentence...