Or is there a software to auto generate random passwords?
相关问题
- Views base64 encoded blob in HTML with PHP
- Laravel Option Select - Default Issue
- PHP Recursively File Folder Scan Sorted by Modific
- Can php detect if javascript is on or not?
- Using similar_text and strpos together
This function will generate more stronger password than most woted solution:
Each character of password will be [A-Z] or [a-z] or ^ or *
This will help to create random password :
Here is the working example (Demo)
This is how I do it.
I like to shuffle array of random chars
If you need the password to be longer, just concatenate charlist a few times :)
Here's a simple solution. It will contain lowercase letters and numbers.
Here's A stronger solution randomly generates the character codes in the desired character range for a random length within a desired range.
I use st_split and implode function: