<?php
function randomString($count = 5, $length = 13) {
$chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
$charsLen = strlen($chars);
$res = array();
for($i = 0; $i < $count; $i++) {
$tmp = '';
for ($j = 0; $j < $length; $j++) {
$tmp .= $chars[rand(0, $charsLen - 1)];
}
$res[] = $tmp;
}
return $res;
}
print_r (randomString());
?>