“Randstring Php” Ответ

RandomString PHP

//generates 13 character random unique alphanumeric id
echo uniqid();
//output - 5e6d873a4f597
Impossible Ibis

Randstring Php

<?php 
    $random = substr(md5(mt_rand()), 0, 7);
    echo $random;
?>
Mysterious Markhor

PHP случайная строка

function rand_str() {
    $characters = '0123456789-=+{}[]:;@#~.?/&gt;,&lt;|\!"£$%^&amp;*()abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
    $randomstr = '';
    for ($i = 0; $i < random_int(50, 100); $i++) {
      $randomstr .= $characters[rand(0, strlen($characters) - 1)];
    }
    return $randomstr;
  }
hateschoollovecoding

PHP Rand Int

random_int ( int $min , int $max );
Cerbrain

Ответы похожие на “Randstring Php”

Вопросы похожие на “Randstring Php”

Больше похожих ответов на “Randstring Php” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования