function getRusDate($datetime) {
$yy = (int) substr($datetime,0,4);
$mm = (int) substr($datetime,5,2);
$dd = (int) substr($datetime,8,2);
$hours = substr($datetime,11,5);
$month = array ('января', 'февраля', 'марта', 'апреля', 'мая', 'июня', 'июля', 'августа', 'сентября', 'октября', 'ноября', 'декабря');
return ($dd > 0 ? $dd . " " : '') . $month[$mm - 1]." ".$yy." г. " . $hours;
}
function generate($count, $type = 'num') {
switch ($type){
case 'num':
$symbols = '0123456789';
break;
case 'low':
$symbols = 'abcdefghijklmnopqrstuvwxyz';
break;
case 'up':
$symbols = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
break;
default:
$symbols = 'abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ';
break;
}
for($i = 0; $i < $count; $i++)
$string .= $symbols{mt_rand(0, strlen($symbols)-1)};
return $string;
}