2017 © Pedro Peláez
 

library dot

dot.notation.in.php.made.simple

image

bound1ess/dot

dot.notation.in.php.made.simple

  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Dot

Build Status, (*1)

Dot notation in PHP made simple., (*2)

Installation

composer require bound1ess/dot:~1

Usage

For more information, check out the docs folder., (*3)

$data = new Bound1ess\Dot([
    'foo' => [
        'bar' => 42,
        'baz' => null,
    ],    
]);

echo $data['foo.bar']; // 42

var_dump(isset ($data['foo.baz'])); // true

unset ($data['foo.bar']);

$data['foo.some.path'] = false;

var_dump($data->toArray()); // ['foo' => ['some' => ['path' => false], 'baz' => null]]

License

The MIT license (see LICENSE file for more details)., (*4)

The Versions

05/01 2015

dev-master

9999999-dev

dot.notation.in.php.made.simple

  Sources   Download

MIT

The Development Requires

dot array notation manipulations

05/01 2015

1.0.0

1.0.0.0

dot.notation.in.php.made.simple

  Sources   Download

MIT

The Development Requires

dot array notation manipulations