Download the PHP package ivir3zam/object-array-tools without Composer
On this page you can find all versions of the php package ivir3zam/object-array-tools. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ivir3zam/object-array-tools
More information about ivir3zam/object-array-tools
Files in ivir3zam/object-array-tools
Package object-array-tools
Short Description A full featured array behavior Abstract class for using in php libraries
License MIT
Homepage https://ivir3zam.github.com/
Informations about the package object-array-tools
ObjectArrayTools
this library helps you to have an object as an active array with hooks for updating, inserting, deleting, sanitizing and filtering elements.
Technical Details
this library is different from builtin ArrayObject class in PHP, and this deference is that this library is based on traits so you can use it in your classes that already extending some other classes and other differences is about hooks that help you to implement Observer Pattern for your ObjectArray, and also you have many methods equivalents to php native Array Functions
Installation
The recommended way to install ObjectArrayTools is through Composer.
Next, run the Composer command to install the latest stable version of Guzzle:
After installing, you need to require Composer's autoloader:
You can then later update ObjectArrayTools using composer:
Examples
this library helps you to use your objects as an storage and it don't affect your current object functionality
Basic Array Usage
this example only show you the basic usage of this library
Save input in database and show output in browser
in this example we try to have an array that when you write data in it, filter input for database and when you read from it, sanitize for html output
Sorting an array
you can see sorting functionality of this library here. there is a complete list of supported functions in AbstractActiveArray class documentation