tenolo/utilities

Only some basic utility classes.

1.9.1 2019-05-05 13:09 UTC

README

tenolo

PHP Version Latest Stable Version Latest Unstable Version Total Downloads Total Downloads License

Utilities Library

A growing collection of useful helper classes for PHP.

Install instructions

First you need to add tenolo/utilities to composer.json:

{
   "require": {
        "tenolo/utilities": "~1.0"
    }
}

Please note that dev-master latest development version. Of course you can also use an explicit version number, e.g., 1.0.*.

Then use it ;)

<?php
 
namespace Some\Namespace;

use Tenolo\Utilities\Utils\StringUtil;

// index.php
$id = StringUtil::getRandomID(8);