Skip to content

Instantly share code, notes, and snippets.

@cubespace
Forked from igorpronin/php
Created May 30, 2017 08:56
Show Gist options
  • Save cubespace/f819302ca075b638f807469fb924b2d6 to your computer and use it in GitHub Desktop.
Save cubespace/f819302ca075b638f807469fb924b2d6 to your computer and use it in GitHub Desktop.
генерация уникальной случайной строки php
<?php
/**
*
* @var Получаем текущее время в миллисекундах и случайное число
* и хэшируем полученную строку
*
*/
$hashe = md5( microtime() . mt_rand() );
# Выводим хэш
echo $hashe;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment