<?php

$cypher = "abcdefghiklmnopqrstuvwxyz";
$length = count($cypher);
$string = mb_substr($cypher, mt_rand(0, $length-1), mt_rand(0, $length-1));
var_dump($length, $string);
