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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package php-util

php-util library

Latest Stable Version License

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

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.


All versions of php-util with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package semelapavel/php-util contains the following files

Loading the files please wait ....