ตัวอย่าง genrate random password php 


Here’s an example of generating a random password in PHP with options for customization:

PHP

<?php

function generateRandomPassword($length = 8, $useUpperCase = true, $useLowerCase = true, $useNumbers = true, $useSymbols = true) {
  // Characters to use in the password
  $characters = "";
  
  if ($useLowerCase) {
    $characters .= "abcdefghijklmnopqrstuvwxyz";
  }
  if ($useUpperCase) {
    $characters .= "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  }
  if ($useNumbers) {
    $characters .= "0123456789";
  }
  if ($useSymbols) {
    $characters .= "!@#$%^&*()_-=+{};':<.>,/?";
  }
  
  // Length of the password
  $length = (int) $length;  // Ensure length is an integer
  $length = max(1, $length);  // Minimum length is 1

  // Randomly select characters from the available pool
  $password = "";
  for ($i = 0; $i < $length; $i++) {
    $password .= $characters[rand(0, strlen($characters) - 1)];
  }

  return $password;
}

// Example usage with different options
$password1 = generateRandomPassword(); // 8 characters, all options
$password2 = generateRandomPassword(12, false, true, true, false); // 12 characters, lowercase, numbers only
$password3 = generateRandomPassword(10, true, false, false, true); // 10 characters, uppercase and symbols

echo "Password 1: $password1\n";
echo "Password 2: $password2\n";
echo "Password 3: $password3\n";

?>

Explanation:

  1. Function generateRandomPassword:
    • Takes optional arguments to customize password length and character types (uppercase, lowercase, numbers, symbols).
    • Builds a string containing the characters allowed based on the provided options.
    • Ensures $length is a valid integer and at least 1.
    • Uses a loop to randomly select and append characters to the $password string.
    • Returns the generated random password.
  2. Example Usage:
    • Calls the function with different combinations of arguments to demonstrate customization.

Customization:

  • You can modify the character sets within the function to include or exclude specific symbols.
  • Adjust the function arguments to suit your desired password complexity.

Security Considerations:

  • Consider using a cryptographically secure random number generator function like random_bytes for better security (available in PHP 7.1 and later). This example uses rand for simplicity.
  • Store passwords securely using hashing algorithms like password_hash. Don’t store passwords in plain text.
Related Posts
 jquery vslidation remove spaces from input คืออะไร

jQuery validation remove spaces from input คือ ฟังก์ชันที่ใช้ลบช่องว่างออกจาก input field โดยใช้ jQuery วิธีใช้ JavaScri Read more

dimiss keyboard flutter คืออะไร

ใน Flutter dismiss keyboard หมายถึง การซ่อนแป้นพิมพ์เสมือนบนหน้าจอ วิธีการ dismiss keyboard ใช้ FocusNode: Dart imp Read more

bootstrap5 cdn คืออะไร

Bootstrap5 CDN คือ Content Delivery Network ของ Bootstrap 5 ซึ่งเป็นเฟรมเวิร์ก front-end ยอดนิยมที่ช่วยให้นักพัฒนาเว็บสร Read more

เขียนโค้ดดึงเนื้อหาจาก wordpress

โค้ดดึงเนื้อหาจาก WordPress วิธีดึงเนื้อหาจาก WordPress มีหลายวิธี ขึ้นอยู่กับประเภทของเนื้อหาที่ต้องการดึง ดึงบทความทั้ Read more