Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Dmitry Shilnikov http://sourceforge.net/projects/glossword/

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

PHP: Random string

// Creating string with mt_rand() more random
   1  
   2  <?php
   3  $str = ''; /* Future string */
   4  $maxchar = 8; /* The maximum number of characters */
   5  $chars = str_shuffle('abcdef1234567890');
   6  $len = strlen($chars);
   7  for ($i = 0; $i < $maxchar; $i++)
   8  {
   9  	$str .= $chars[mt_rand(0, $len-1)];
  10  }
  11  print $str;
  12  ?>
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS