ItSolutionStuff.com

How to Generate Random String in PHP?

By Hardik Savani • May 14, 2024
PHP

Hi Guys,

This article goes into detail on php generate random string. I explained simply step by step how to generate random string in php. I’m going to show you how to generate random alphanumeric string in php. In this article, we will implement a php generate random string fixed length. Follow the below tutorial step of random string generator PHP.

In PHP, you can generate a random string using various methods. One common way is to use the str_shuffle() function along with substr() to get a random portion of a shuffled character set. Here's a simple example:

index.php

<?php

function generateRandomString($length = 10) {

$characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';

$charactersLength = strlen($characters);

$randomString = '';

for ($i = 0; $i < $length; $i++) {

$randomString .= $characters[rand(0, $charactersLength - 1)];

}

return $randomString;

}

/* Usage example: */

$randomString = generateRandomString(10);

echo $randomString;

?>

Output:

oBMzXTtOBU

This code will generate a random string of the specified length (default is 10 characters) using alphanumeric characters (both lowercase and uppercase letters) along with digits. You can adjust the length and character set according to your requirements.

I hope it can help you...

Tags: PHP
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

šŸ“ŗ Subscribe on YouTube

We Are Recommending You

ā˜…

How to Add Facebook Share Button in PHP Website?

Read Now →
ā˜…

PHP Format Number with 2 Decimals Example

Read Now →
ā˜…

How to Get Time Difference in Hours and Minutes in PHP?

Read Now →
ā˜…

How to Install PHP DOM Extension in Ubuntu 22.04?

Read Now →
ā˜…

How to Install PHP Imagick Extension in Ubuntu 22.04?

Read Now →
ā˜…

How to Extract Img SRC, Title and Alt from HTML in PHP?

Read Now →
ā˜…

How to Install PHP 8.3 on Ubuntu 22.04?

Read Now →
ā˜…

How to Install PHP 8.2 on Ubuntu 22.04?

Read Now →
ā˜…

PHP array_merge() Function Example

Read Now →
ā˜…

How to Get Last 5 Elements of Array in PHP?

Read Now →
ā˜…

PHP Get First 2, 3, 4, 5, 10 Character from String Example

Read Now →
ā˜…

How to Check Query Execution Time in PHP?

Read Now →
ā˜…

Ubuntu PHP bz2 Extension Install Commands Example

Read Now →