PHP Classes

File: docs/installation.md

Recommend this page to a friend!
  Classes of Eric Sizemore   Utility   docs/installation.md   Download  
File: docs/installation.md
Role: Auxiliary data
Content type: text/markdown
Description: Auxiliary data
Class: Utility
Collection of various PHP utility functions
Author: By
Last change:
Date: 2 months ago
Size: 927 bytes
 

Contents

Class file image Download

Installation

Installing Esi\Utility is very easy, if you're using composer. If you haven't done so, install composer, and use composer require to install Esi\Utility.

curl -sS https://getcomposer.org/installer | php
php composer.phar require esi/utility

First usage

Make sure you include vendor/autoload.php in your application. To make all of Utility's components available at once:

use Esi\Utility\{
    Arrays,
    Conversion,
    Dates,
    Environment,
    Filesystem,
    Image,
    Numbers,
    Strings
};

For more information on each component: