Skip to content

truetone/Dict

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple PHP Dict

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"
}

About

A simple PHP class for Python dictionary-like functionality.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages