Download the PHP package smoren/array-view without Composer
On this page you can find all versions of the php package smoren/array-view. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download smoren/array-view
More information about smoren/array-view
Files in smoren/array-view
Package array-view
Short Description Create array views for easy data manipulation, select elements using Python-like slice notation, enable efficient selection of elements using index lists and boolean masks.
License MIT
Informations about the package array-view
Array View PHP
Array View is a PHP library that provides powerful abstractions and utilities for working with lists of data. Create views of arrays, slice and index using Python-like notation, transform and select your data using chained and fluent operations.
Features
- Array views as an abstraction over an array
- Forward and backward array indexing
- Selecting and slicing using Python-like slice notation
- Filtering, mapping, matching and masking
- Chaining operations via pipes and fluent interfaces
How to install to your project
Usage
Indexing
Index into an array forward or backwards using positive or negative indexes.
Data | 1 | 2 | 3 | 4 | 5 | 6 | 7 |
---|---|---|---|---|---|---|---|
Positive Index | 0 | 1 | 2 | 3 | 4 | 5 | 6 |
Negative Index | -7 | -6 | -5 | -4 | -3 | -2 | -1 |
Slices
Use Python-like slice notation to select a range of elements: [start, stop, step]
.
Insert into parts of the array.
Subviews
Create subviews of the original view using masks, indexes, and slices.
Subarray Multi-indexing
Directly select multiple elements using an array-index multi-selection.
Combining Subviews
Combine and chain subviews one after another in a fluent interface to perform multiple selection operations.
Selectors Pipe
Create pipelines of selections that can be saved and applied again and again to new array views.
Documentation
For detailed documentation and usage examples, please refer to the API documentation.
Unit testing
Contributing
Contributions are welcome! Feel free to open an issue or submit a pull request on the GitHub repository.
Standards
ArrayView conforms to the following standards:
- PSR-1 — Basic coding standard
- PSR-4 — Autoloader
- PSR-12 — Extended coding style guide
License
ArrayView PHP is licensed under the MIT License.