2017 © Pedro Peláez
 

library collections

Base class for working with collections of things

image

werx/collections

Base class for working with collections of things

  • Thursday, May 15, 2014
  • by joshmoody
  • Repository
  • 1 Watchers
  • 0 Stars
  • 1,737 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 5 Versions
  • 2 % Grown

The README.md

Collection

Base class for working with collections of things., (*1)

Build Status Total Downloads Latest Stable Version, (*2)

Usage

You can either create instances of the Collection object..., (*3)

$foo = new \werx\Collections\Collection;

Or create a class that extends it., (*4)

class Foo extends \werx\Collections\Collection
{

}

$foo = new Foo();

Fill the collection in the constructor.

$foo = new new \werx\Collections\Collection(['foo' => 'Foo', 'bar' => 'bar']);

Add multiple items to collection by passing an array to the set() method.

$foo = new Foo();
$foo->set(['foo' => 'Foo', 'bar' => 'bar']);

How many items in the collection?

var_dump($foo->count());
# OR
var_dump(count($foo)); // The Collection class implements the Countable() interface.
// 2

Does the collection have a key named 'foo'? (yes)

var_dump($foo->has('foo'));
// true

Does the collection have a key named 'x'? (no)

``` php var_dump($foo->has('x')); // false, (*5)


### Get the value of the key named 'foo' from the collection. ``` php var_dump($foo->get('foo')); // Foo

Return default null if key doesn't exist.

``` php var_dump($foo->get('x')); // null, (*6)

### Set a different default value if key doesn't exist.
``` php
var_dump($foo->get('x', 'no'));
// no

Set a key/value.

``` php $foo->set('name', 'Josh');, (*7)


### Add an item to the collection without a specific key. ``` php $foo->add('Josh');

Add an array to the collection without a specific key.

``` php $foo->add(['name' => 'Josh', 'location' => 'Arkansas']);, (*8)


### Remove a key from the collection. ``` php $foo->remove('name');

Get all keys in the collection.

``` php $foo->all();, (*9)


### OR ``` php $foo->toArray();

Convert the collection to json.

``` php var_dump($foo->toJson()); // {"foo":"Foo","bar":"Bar"}, (*10)


### Casting the collection to a string will also return json. ``` php var_dump((string) $foo); // {"foo":"Foo","bar":"Bar"}

Empty the collection.

``` php $foo->clear();, (*11)


## Installation Installation of this package is easy with Composer. If you aren't familiar with the Composer Dependency Manager for PHP, [you should read this first](https://getcomposer.org/doc/00-intro.md). ### composer.json ``` json "require": { "werx/collections": "dev-master" }

Contributing

Unit Testing

$ vendor/bin/phpunit

Coding Standards

This library uses PHP_CodeSniffer to ensure coding standards are followed., (*12)

I have adopted the PHP FIG PSR-2 Coding Standard EXCEPT for the tabs vs spaces for indentation rule. PSR-2 says 4 spaces. I use tabs. No discussion., (*13)

To support indenting with tabs, I've defined a custom PSR-2 ruleset that extends the standard PSR-2 ruleset used by PHP_CodeSniffer. You can find this ruleset in the root of this project at PSR2Tabs.xml, (*14)

Executing the codesniffer command from the root of this project to run the sniffer using these custom rules., (*15)

$ ./codesniffer

The Versions

15/05 2014

dev-master

9999999-dev

Base class for working with collections of things

  Sources   Download

MIT

The Requires

  • php >= 5.4

 

The Development Requires

by Josh Moody

collection array

15/05 2014

0.3.0

0.3.0.0

Base class for working with collections of things

  Sources   Download

MIT

The Requires

  • php >= 5.4

 

The Development Requires

by Josh Moody

collection array

07/05 2014

0.2.1

0.2.1.0

Base class for working with collections of things

  Sources   Download

MIT

The Requires

  • php >= 5.4

 

The Development Requires

by Josh Moody

collection array

07/05 2014

0.2.0

0.2.0.0

Base class for working with collections of things

  Sources   Download

MIT

The Requires

  • php >= 5.4

 

The Development Requires

by Josh Moody

collection array

30/04 2014

0.1.0

0.1.0.0

Base class for working with collections of things

  Sources   Download

MIT

The Requires

  • php >= 5.4

 

The Development Requires

by Josh Moody

collection array