Download the PHP package semelapavel/php-util without Composer
On this page you can find all versions of the php package semelapavel/php-util. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download semelapavel/php-util
More information about semelapavel/php-util
Files in semelapavel/php-util
Package php-util
Short Description PHP Utils for easier life.
License MIT
Homepage https://github.com/SemelaPavel/php-util
Informations about the package php-util
php-util library
About
PHP-Util library is a set of useful PHP classes that make life easier.
Installation
Use the package manager composer to install php-util.
Table of contents
- Object
- ClassLoader
- Byte
- File
- File
- FileFilter
- Http
- FileUpload
- Pagination
- Paginator
- Pagination
- String
- RegexPattern
- Time
- Holidays
- Calendar
- LocalDateTime
Object
Object\ClassLoader
A simple PSR-4 autoloader that loads files with required classes using namespaces.
In this example, classLoader will try to find each file with a fully-qualified
class name starting with the prefix MyNamespace
in the /src/myApp
directory:
\MyNamespace\Class
should be found as /src/myApp/Class.php
.
If the file cannot not be found, or if it does not have MyNamespace
prefix,
the classloader will try to find a file by the fully-qualified class name
in /src/other
directory: \MyNamespace\Class
should be found as /src/other/MyNamespace/Class.php
.
Object\Byte
This class wraps an integer value and represents it as a binary byte.
Byte of any value and its specified binary unit:
Easy parsing of php.ini values:
Parsing byte value from any string:
File
The File namespace contains a set of classes for working with files.
File\File
An instance of this class represents a file in the file system. The file does not need to exist, or be readable when creating a File object. This class extends \SplFileInfo class from Standard PHP Library (SPL).
Check if the file name is safe and valid for most used operating systems:
and without creating an object:
Strip the ASCII control characters, whitespaces, slashes, dots and backslashes from the end of file name:
File\FileFilter
An instance of this class helps filter out unwanted files by file names using shell wildcards or a regular expression, files with a file size out of set size or range and files with specific date and time or date-time range.
Lets have image.jpg
with file size 4 KB
and modif. time 2021-01-01
:
Http
The Http namespace contains a set of classes handling requests and responses over HTTP.
Http\FileUpload
The FileUpload
provides basic functionality for retrieving normalized file upload data for further processing.
Each leaf of the files array is an instance of UploadedFile
or null
if error UPLOAD_ERR_NO_FILE
occured.
See simplified code below:
Pagination
A set of useful classes for managing pagination of your web pages.
Pagination\Paginator
Simple pagination calculator to help with calculate number of pages for specific number of items, number of items per page, offset etc. See example below with total number of items set to 100, items per page set to 5 and current page set to 5.
Pagination\Pagination
Paginator
extension that adds method to get an array of pages for advanced pagination.
See example below with total number of items set to 100, items per page set to 5
and current page set to 5.
The $pages
array structure will looks like:
String
String\RegexPattern
This class represents a regular expression pattern.
Simple pattern example:
Pattern with bind example:
Time
Time\Holidays
ArrayAccess
class which handles holidays and provides some extra functionality.
Time\Calendar
This class helps with date calculations.
With Holidays
object set:
Time\LocalDateTime
This class is a DateTime
factory. All functions in this class use default time zone.