This is a discussion on how to generate random number within the PHP Language forums, part of the PHP Programming Forums category; hi i want to generate a string which contains 5 characters and all 5 characters are randomly generated means it ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
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. |
|
|||
|
vishal wrote:
> 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 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 |
|
|||
|
*** vishal escribió/wrote (25 Mar 2005 00:13:17 -0800):
> 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. 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 -- |