dev-master
9999999-devNamespaced accessors for multi-dimensional trees of parameters (such as POST/GET, config, etc)
MIT
The Requires
- php >=5.4
The Development Requires
by Adam Benson
Wallogit.com
2017 © Pedro Peláez
Namespaced accessors for multi-dimensional trees of parameters (such as POST/GET, config, etc)
ParameterTree is a multi-dimensional, namespaced parameter bag simplifying access to multidimensional arrays (such as configs, GET/POST/SESSION params, etc), with default return values and typecasting., (*1)
$dbConfig = new ParameterTree(
[
"master"=>[
"host"=>"db.com",
"user"=>"DB-DUDE",
"pass"=>"super-secret123",
"port"=>"3306"
]
]
);
echo $dbConfig->get("master.host","localhost"); //db.com
echo $dbConfig->get("slave.host","localhost"); //localhost
var_dump($dbConfig->hasKey("master.host")); //true
var_dump($dbConfig->hasKey("master.soup")); //false
$dbConfig->set("slave.pass","abc123");
var_dump($config->toArray()); // ["master"=>["host"=>"db.com","user"=>"DB-DUDE","pass"=>"super-secret123","port"=>"3306],"slave"=>["pass"=>"abc123"]]
ParameterTree is open-sourced software licensed under the MIT license, (*2)
Namespaced accessors for multi-dimensional trees of parameters (such as POST/GET, config, etc)
MIT