yerey/random

Generates random string

1.0 2021-01-12 12:45 UTC

This package is auto-updated.

Last update: 2024-09-12 21:36:33 UTC


README

Features

  • Creates random string.

Installation

$ composer require yerey/random

Usage

<?php

	require_once 'vendor/autoload';
	use Random\Random;

?>

Example

<?php

    require_once '/vendor/autoload.php';

    use Random\Random;

    $random = new Random();
    echo $random->create();

?>

Functions