Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7551469
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T10:30:11+00:00 2026-05-30T10:30:11+00:00

I want to create a random ints and strings in PHP and so I

  • 0

I want to create a random ints and strings in PHP and so I decided to use mcrypt_create_iv. It is written in manual that it uses /dev/random and /dev/urandom for randomness but I can’t find a simple tutorial on how to generate random Int and String using this function. I tried some code but this function gives me unreadable characters. So please can you give me a simple example of how properly I can use it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T10:30:12+00:00Added an answer on May 30, 2026 at 10:30 am

    If you want to generate random numbers, use mt_rand:

    $random = mt_rand(0, 999999);
    

    If you want a string, you can pass the resulting integer through a hash function:

    $random = mt_rand(0, 999999);
    $random_string = sha1($random);
    

    mcrypt_create_iv is used in cryptography. It is totally unrelated to your requirement.

    If you’re looking to use the random string in security components (salts, passwords, etc.), read from /dev/urandom like so:

    $random = file_get_contents('/dev/urandom', false, null, 0, 10);
    

    …where 10 is the length, then convert like this:

    $string = bin2hex($random);
    $number = current(unpack('L', $random));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to create a random number function but I don't want to use
I want to create a Qt application that takes a random integer and sends
I want to create random-looking 5 or 6 character alpha-numeric strings, something like: Vg78KY
On Mac I can create a random 5GB file like this dd if=dev/urandom of=~/random5gb
I want to create a random strings using array of Dictionary. I want to
I want to create a program that creates .txt files with random characters, but
In my constructor, I want to create a random color. Therefore, I need three
For an online game (MMORPG) I want to create characters (players) with random strength
How to quickly create some random image with the icon size? I don't want
I'd like to create a random string, consisting of alpha-numeric characters. I want to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.