gaming-engine/dictionary

Dictionary implementation for PHP

1.0.1 2021-10-07 21:26 UTC

This package is auto-updated.

Last update: 2024-04-08 02:56:06 UTC


README

Latest Version on Packagist Total Downloads GitHub Actions

A quick and easy dictionary implementation for PHP.

This package was initially ported (and upgraded) from here.

Installation

You can install the package via composer:

composer require gaming-engine/dictionary

Usage

$dict = new \GamingEngine\Dictionary\Dictionary();

$dict[new \stdClass()] = 12;
$dict['php'] = 23;
$dict[100] = 'dictionary';

Class \GamingEngine\Dictionary\Dictionary implements Iterator, ArrayAccess, Countable and Serializable. It also provides methods for creating and sorting Dictionary and for converting it to array.

Valid types of keys for the Dictionary are:

  • object
  • integer
  • float
  • string
  • bool
  • null

You cannot use:

  • Closure
  • array

Creating

To create empty Dictionary, use constructor.

$dict = new \GamingEngine\Dictionary\Dictionary();

You can also create Dictionary from key-value pairs.

$dict = \GamingEngine\Dictionary\Dictionary::fromPairs([
    ['key1', 'value1'],
    ['key2', 'value2'],
    ['key3', 'value3'],
]);

Last option is to create Dictionary from array.

$dict = \GamingEngine\Dictionary\Dictionary::fromArray([
    'key1' => 'value1',
    'key2' => 'value2',
    'key3' => 'value3',
]);

Converting to PHP array

There are three methods that let you retrieve data as array:

  • Dictionary::keys() - returns array of keys,
  • Dictionary::values() - returns array of values,
  • Dictionary::toPairs() - returns array of key-value pairs; each pair is 2-element array.

Copying Dictionary

Unlike an array, Dictionary is an object and that means it is reference type. If you want the copy of Dictionary, you have to use clone keyword or call Dictionary::getCopy() method.

Sorting elements

Just like an array, Dictionary is ordered. To sort Dictionary, use Dictionary::sortBy($callback, $direction) method. Any argument can be omitted.

  • $callback will be called for every element. Dictionary will be ordered by values returned by callback. First argument of the callback is value and second is key of element. Instead of callable, you can use "values" or "keys" string.
  • $direction can be "asc" or "desc". Default value is "asc".

Examples of sorting:

$dictionary->sortBy('values','asc');
$dictionary->sortBy(function($value, $key) {
    return $value->title . $key->name;
}, 'desc');

sortBy changes Dictionary it is called for. If you want sorted copy, chain it with getCopy.

$sortedDictionary = $dictionary->getCopy()->sortBy('values', 'asc');

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email awjudd@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.