PHP Classes

Utility: Collection of various PHP utility functions

Recommend this page to a friend!
  Info   View files Documentation   View files View files (61)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog    
Last Updated Ratings Unique User Downloads Download Rankings
2024-04-22 (3 hours ago) RSS 2.0 feedNot enough user ratingsTotal: 281 All time: 7,601 This week: 30Up
Version License PHP version Categories
esi_utility 2.1.0MIT/X Consortium ...8.2.0Tools, Libraries, PHP 7
Description 

Author

This class provides a collection of various PHP utility functions. Currently it provides functions to:

- Set the encoding of text outputted by the current script
- Flatten or traverse an array recursively
- Convert multibyte text to upper or lower case or set capitalize initials, get a substring, check if a string begins, ends or contains or not contains a text, get the character length, transliterate a text, convert to slug
- Get random text, random integer, random bytes
- Count lines of text
- Get the size of all directory files, list the directory files
- Normalize a file path, check permissions
- Etc..

Picture of Eric Sizemore
  Performance   Level  
Innovation award
Innovation award
Nominee: 4x

Winner: 1x

 

Documentation

Utility - Collection of various PHP utility functions.

FOSSA Status Build Status Code Coverage Scrutinizer Code Quality Tests PHPStan

Latest Stable Version Downloads per Month License

Utility is a small collection of useful functions that are aimed to make developers' lives just a tad bit easier.

Installation

Composer

Install the latest version with:

$ composer require esi/utility

Then, within your project (if not already included), include composer's autoload. For example:

<?php

require 'vendor/autoload.php';

?>

Basic Usage

Utility is a set of classes that are broken down into several "components":

Utilities

* Arrays * Conversion * Dates * Environment * Filesystem * Image * Numbers * Strings

As an example, let's say you want to convert a string to title case. To do so:

<?php

use Esi\Utility\Strings;

$title = Strings::title('this is my title');

echo $title;

?>

All methods of found within Utility's classes are static. So, for example, to retrieve the information for a particular timezone:

<?php

use Esi\Utility\Dates;

$timezone = Dates::timezoneInfo('America/New_York');

print_r($timezone);

/*
Array
(
    [offset] => -5
    [country] => US
    [latitude] => 40.71416
    [longitude] => -74.00639
    [dst] => 
)
*/

?>

Documentation

Please see docs or view online.

About

Requirements

  • Utility works with PHP 8.2.0 or above.

Submitting bugs and feature requests

Bugs and feature requests are tracked on GitHub

Issues are the quickest way to report a bug. If you find a bug or documentation error, please check the following first:

  • That there is not an Issue already open concerning the bug
  • That the issue has not already been addressed (within closed Issues, for example)

Contributing

See CONTRIBUTING.

Author

Eric Sizemore - <admin@secondversion.com> - <https://www.secondversion.com>

License

Utility is licensed under the MIT License - see the LICENSE file for details

Acknowledgements

This library is inspired by Brandon Wamboldt's utilphp library.


  Files folder image Files  
File Role Description
Files folder image.github (3 files, 2 directories)
Files folder imagedocs (16 files)
Files folder imagesrc (8 files)
Files folder imagetests (1 file, 2 directories)
Accessible without login Plain text file .php-cs-fixer.dist.php Example Example script
Accessible without login Plain text file .scrutinizer.yml Data Auxiliary data
Accessible without login Plain text file backward-compatibility.md Data Auxiliary data
Accessible without login Plain text file CHANGELOG.md Data Auxiliary data
Accessible without login Plain text file CODE_OF_CONDUCT.md Data Auxiliary data
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file composer.lock Data Auxiliary data
Accessible without login Plain text file CONTRIBUTING.md Data Auxiliary data
Accessible without login Plain text file LICENSE.md Lic. License text
Accessible without login Plain text file mkdocs.yml Data Auxiliary data
Accessible without login Plain text file phpstan-baseline.neon Data Auxiliary data
Accessible without login Plain text file phpstan.neon Data Auxiliary data
Accessible without login Plain text file phpunit.xml Data Auxiliary data
Accessible without login Plain text file README.md Doc. Documentation
Accessible without login Plain text file renovate.json Data Auxiliary data
Accessible without login Plain text file SECURITY.md Data Auxiliary data

 Version Control Unique User Downloads Download Rankings  
 98%
Total:281
This week:0
All time:7,601
This week:30Up