Non-persistent way to use arrays as database.
Package is available on Packagist, you can install it using Composer.
composer require phpfluent/arraystorageThe examples below are using the following use statement at the beginning of the file:
use PHPFluent\ArrayStorage\Storage;$storage = new Storage();
$storage->users; // This is a collectionYou can use a single array:
$storage = new Storage();
$storage->users->insert(['name' => 'Henrique Moody']);But you also can use a Record object:
use PHPFluent\ArrayStorage\Record;
$storage = new Storage();
$record = new Record();
$record->name = 'Henrique Moody';
$storage->users->insert($record);You can create a Record object from Storage object:
$storage = new Storage();
$record = $storage->users->record(); // You also can provide default data, like an array or stdClass
$record->name = 'Henrique Moody';
$storage->users->insert($record);An important point to note is that, after you insert the record to the collection object
it gives to the record an unique (incremental integer) id property.
$storage = new Storage();
$storage->users->delete(['name' => 'Henrique Moody']);$storage = new Storage();
$storage->users->delete();$storage->users->findAll(['status !=' => false]); // Return an Collection object with the partial result (if any)$storage->users->find(['priority >=' => 4]); // Return an Record object with the first matched result (if any) or NULL$criteria = $storage->users->criteria();
$criteria->foo->equalTo(2)
->bar->in([1, 2, 3])
->baz->regex('/^[0-9]{3}$/')
->qux->like('This _s spart%')
->quux->iLike('tHiS _S sPaRt%')
->corge->between(array(1, 42))
->grault->lessThan(1000)
->garply->greaterThan(0)
->waldo->notEqualTo(false)
->fred->greaterThanOrEqualTo(13);
$storage->users->find($criteria);Sometimes you want to convert data into other formats, for that cases we have the converters.
The converters accept any object that implements Traversable
interface and since Record, Collection and Storage classes implements this interface
you are able to convert any of them into other formats.
For the examples below we assume you have the follow use statements:
use PHPFluent\ArrayStorage\Converter;Converts data into an array.
$converter = new Converter\Arr();
$converter->convert($storage->collectionName); // Returns an array with the records as array tooIf you do not want to convert the children of the object (values that also implement Traversable interface) you just have to define a flag on the constructor of this converter, like:
$converter = new Converter\Arr(false);
$converter->convert($storage->collectionName); // Returns an array of Record objectsConverts data into JSON format.
$converter = new Converter\Json();
$converter->convert($storage->collectionName); // Returns an string with the JSONYou also can define json_encode() options on the constructor of this converter, like:
$converter = new Converter\Json(JSON_NUMERIC_CHECK);
$converter->convert($storage->collectionName); // Returns the JSON but encodes numeric strings as numbersWe use JSON_PRETTY_PRINT as default option.
Converts data into XML format.
$converter = new Converter\Xml();
$converter->convert($storage->collectionName); // Returns an string with the XML



