PHP code example of codelabmw / testament
1. Go to this page and download the library: Download codelabmw/testament library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
codelabmw / testament example snippets
use Codelabmw\Testament\Testament;
$alpha = Testament::alpha(length: 8);
$numeric = Testament::numeric(length: 6);
$alphaNumeric = Testament::alphaNumeric(/* Length defaults to 6 */);
$password = Testament::password(/* Length defaults to 8 */);