<?php
function random_strings($length_of_string)
{
// String of all alphanumeric character
$str_result = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
// Shufle the $str_result and returns substring
// of specified length
0, $length_of_string);
}
// This function will generate
// Random string of length 10
// This function will generate
// Random string of length 8
?>