iartz/php-package

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

1.0.3 2021-12-27 07:55 UTC

This package is auto-updated.

Last update: 2024-05-27 13:46:47 UTC


README

Generate random string.

Installation

This project using composer.

$ composer require iartz/php-package

Usage

Generate random string

<?php

use Utils\RandomString;

$randomString = new RandomString(6);

print $randomString->generate();