Connecting Tech Pros Worldwide Forums | Help | Site Map

how to generate random number

vishal
Guest
 
Posts: n/a
#1: Jul 17 '05
hi

i want to generate a string which contains 5 characters and all 5
characters are randomly generated means it is not fixed that which
string i will get after i execute function.

so tell me random number generation in php

thxs in advance.


Chris Hope
Guest
 
Posts: n/a
#2: Jul 17 '05

re: how to generate random number


vishal wrote:
[color=blue]
> i want to generate a string which contains 5 characters and all 5
> characters are randomly generated means it is not fixed that which
> string i will get after i execute function.
>
> so tell me random number generation in php[/color]

Random number generating function manual page: http://www.php.net/rand

To get your 5 character string you'll want to do something along the
lines of:

$x = '';
for($i = 0; $i < 5; $i++) {
$x .= chr(rand(97, 122));
}

--
Chris Hope | www.electrictoolbox.com | www.linuxcdmall.com
Alvaro G. Vicario
Guest
 
Posts: n/a
#3: Jul 17 '05

re: how to generate random number


*** vishal escribió/wrote (25 Mar 2005 00:13:17 -0800):[color=blue]
> i want to generate a string which contains 5 characters and all 5
> characters are randomly generated means it is not fixed that which
> string i will get after i execute function.[/color]

Your function is mt_rand(). The manual page includes some user comments you
can just copy & paste. Don't forget to generate a 'random' seed with
mt_srand().

--
-+ Álvaro G. Vicario - Burgos, Spain
+- http://www.demogracia.com (la web de humor barnizada para la intemperie)
++ No envíes tu dudas a mi correo, publícalas en el grupo
-+ Do not send me your questions, post them to the group
--
Closed Thread


Similar PHP bytes