lamhotsimamora/random-string

There is no license information available for the latest version (v1.0.0) of this package.

generator for random string

v1.0.0 2024-10-13 13:26 UTC

This package is auto-updated.

Last update: 2025-06-13 15:07:05 UTC


README

composer require lamhotsimamora/random-string

How to use

<?php 

require 'vendor/autoload.php';

$string = new \Lamhotsimamora\RandomString\RandomStringBuilder();

// set length of random string
$string->setLength(25);

echo $string->generate();