Download the PHP package reptily/array-list without Composer

On this page you can find all versions of the php package reptily/array-list. 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 array-list

Install

what problem does this library solve?

There are no built-in mechanisms for creating lists in the PHP language. An associative array does not guarantee that its elements are typed.

Example

In this example, we do not guarantee that all elements will be the necessary objects, and we also do not guarantee that the array will be without attachments.

The code did not become larger, but typification appeared. ArrayList takes care of all typing and data access issues. We can be sure that all types in the array are correct and not do unnecessary checks.

Example

More examples in the directory /example

Only integer

If we need a collection of objects

Use as Object

Use as Array

Methods

add(mixed $item): void

Adds an element to the array

count(): int

Return the number of elements in the array

isEmpty(): bool

Return is empty

indexOf(mixed $element): ?int

Searches the array for a match, if there is one it will return the index, if not then return null

lastIndexOf(): ?int

Will return the last index in the array, if the array is empty will return null

clone(): self

Clones an object

toArray(): array

Converts to an associative array

get(int $index): mixed

Returns an element by its index, if there is no element, an exception will be thrown

set(int $index, mixed $item): void

Sets a value on an element by its index

exists(int $index): bool

Checks the presence of an element by its index

remove(int $index): void

Remove element by its index

clear(): void

Cleans the array

forEach(): callback(mixed $item, int $index)

Returns a callback for each element in the array

sort(string $sort = 'asc'|'desc'): void

Sorts an array

Support class

ArrayListInteger

Creates a list where the elements must all be integer

ArrayListString

Creates a list where the elements must all be string

ArrayListFloat

Creates a list where the elements must all be float

Constants

Constants by types

Constants by sort


All versions of array-list with dependencies

PHP Build Version
Package Version
Requires php Version ^7.3|^8.0
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 reptily/array-list contains the following files

Loading the files please wait ....