phpcollections
v1.3.0
phpcollections é um conjunto de estruturas de dados que tenta facilitar sua vida quando você trabalha com PHP e grandes conjuntos de dados. Inspirado em linguagens como Java ou C#, phpcollections oferece estruturas de dados como List, Map, Stack e muito mais, confira!
PHP >= 7.2
composer require "maxalmonte14/ phpcollections "
Imagine que você está armazenando objetos Post para busca dessa forma.
$ posts [] = new Post ( 1 , ' PHP 7.2 release notes ' );
$ posts [] = new Post ( 2 , ' New Laravel 5.5 LTS make:factory command ' );
Está tudo bem! Mas talvez você tenha cometido um erro por algum motivo misterioso e adicionado um objeto não-Post.
$ posts [] = 5 // This is not even an object!
Ao tentar buscar sua matriz de postagens, você terá problemas.
< ?php foreach($posts as $post): ? >
< tr >
<!-- this gonna fail when $post == 5! -->
< td > < ?= $post- > id; ? > </ td >
< td > < ?= $post- > title; ? > </ td >
</ tr >
< ?php endforeach ? >
Felizmente phpcollections existe.
$ posts = new GenericList (
Post::class,
new Post ( 1 , ' PHP 7.2 release notes ' ),
new Post ( 2 , ' New Laravel 5.5 LTS make:factory command ' )
);
$ posts -> add ( 5 ); // An InvalidArgumentException is thrown!
É claro que existem estruturas de dados mais flexíveis como ArrayList.
$ posts = new ArrayList ();
$ posts -> add ( new Post ( 1 , ' PHP 7.2 release notes ' ));
$ posts -> add ( new Post ( 2 , ' New Laravel 5.5 LTS make:factory command ' ));
$ posts -> add ( 5 ); // Everything is fine, I need this 5 anyway