Easy string random generator (max 32 chars)

Nacházíte se: / Programování / PHP

<?php
  function randomChars($count = 5) {
    return substr(md5(time()), 0, $count);
  }
?>