Answers for "php random 3 string"

PHP
6

php random string

function rand_str() {
    $characters = '0123456789-=+{}[]:;@#~.?/>,<|\!"£$%^&*()abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
    $randomstr = '';
    for ($i = 0; $i < random_int(50, 100); $i++) {
      $randomstr .= $characters[rand(0, strlen($characters) - 1)];
    }
    return $randomstr;
  }
Posted by: Guest on October-03-2020
0

random string php

<?php 
    $random = substr(md5(mt_rand()), 0, 7);
    echo $random;
?>
Posted by: Guest on April-21-2020

Browse Popular Code Answers by Language