thoma127 / dict
A simple PHP class for Python dictionary-like functionality.
v0.1.3
2018-02-18 15:00 UTC
Requires
- php: ^5.3.3 || ^7.0
Requires (Dev)
- phpunit/phpunit: 5.5.*
This package is not auto-updated.
Last update: 2025-04-26 23:10:03 UTC
README
This is a simple PHP class to mimic some of the behavior of a Python dictionary.
Namely, easily storing and retrieving arbitrary data by key reference.
Usage
$data = ["foo" => "bar"];
$dict = new \UMN\CEHD\Dict\Dict($data);
$foo = $dict->get("foo"); // will be "bar"
$baz = $dict->get("baz"); // will be null
$json = $dict->toJSON(); // will be {"foo":"bar"} (string)
$array = $dict->toArray();
var_dump($array);
array(1) {
'foo' =>
string(3) "bar"
}