phpcollections
v1.3.0
phpcollections es un conjunto de estructuras de datos que intentan hacerte la vida más fácil cuando trabajas con PHP y grandes conjuntos de datos. Inspirado en lenguajes como Java o C#, phpcollections ofrece estructuras de datos como Lista, Mapa, Pila y más, ¡compruébalo!
PHP >= 7.2
composer require "maxalmonte14/ phpcollections "
Imagina que estás almacenando objetos Post para recuperarlos de esta manera.
$ posts [] = new Post ( 1 , ' PHP 7.2 release notes ' );
$ posts [] = new Post ( 2 , ' New Laravel 5.5 LTS make:factory command ' );
¡Todo está bien! Pero tal vez cometiste un error por alguna razón misteriosa y agregaste un objeto que no es de Publicación.
$ posts [] = 5 // This is not even an object!
Cuando intentes recuperar tu conjunto de publicaciones, tendrás problemas.
< ?php foreach($posts as $post): ? >
< tr >
<!-- this gonna fail when $post == 5! -->
< td > < ?= $post- > id; ? > </ td >
< td > < ?= $post- > title; ? > </ td >
</ tr >
< ?php endforeach ? >
Afortunadamente existe phpcollections .
$ 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!
Por supuesto, existen estructuras de datos más flexibles 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