Skip to content

Release v1.4

Compare
Choose a tag to compare
@nathanmac nathanmac released this 16 Jul 11:42
· 114 commits to master since this release

Supporting multi dimensional array structures

Example:

array(
    "address" => array(
        "address_1" => "somewhere",
        "address_2" => "over there"
    )
);
$key = "address.address_1";
echo $parser->get($key); // somewhere