Jump to content

generate random string


srcfresno

Recommended Posts

So I found this code from someone else on here who posted about creating a random string. I've copied the code for myself but when I upload php page to my server and view source... there is no php code. Essentially, i see no randomly generated text. what am i missing?

 

<?php
function genRandomString() {
    $length = 5;
    $characters = array_merge(range(0,9),range('a','z'),range('A','Z'));
$string = "";	
    for ($p = 0; $p < $length; $p++) {
        $string .= $characters[mt_rand(0, count($characters)-1)];
    }
    return $string;
}
?>

Link to comment
Share on other sites

excuse my ignorance... so like that

 


<?php
function genRandomString($length, $characters, $string) {
    $length = 5;
    $characters = array_merge(range(0,9),range('a','z'),range('A','Z'));
$string = "";	
    for ($p = 0; $p < $length; $p++) {
        $string .= $characters[mt_rand(0, count($characters)-1)];
    }
    return $string;
}
?>

Link to comment
Share on other sites

That function seems poorly written.

 

Use something like this

<?php 

$characters = array_merge(range(0,9),range('a','z'),range('A','Z'));
shuffle( $characters );
// Where 5 is legnth of string
echo implode( '', array_slice($characters,0,5) );

?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.