pijush_gupta / password-generator
简单密码生成器
dev-main
2022-12-30 11:23 UTC
This package is auto-updated.
Last update: 2024-09-29 06:14:59 UTC
README
克隆仓库
git clone https://github.com/Pijushgupta/php-password-generator.git
include_once 'Location of password.php'
或
使用Composer
composer require pijush_gupta/password-generator:dev-main
在项目中使用
use pgrandom\password; $createObject = new password(); echo $createObject;
或
$createObject = new password( 16 /*length*/, true /* add numbers */, true /* add symbols */ ); echo $createObject;