00f100 / array_dot
array_dot method to navigate into array
Installs: 527
Dependents: 4
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/00f100/array_dot
Requires
- php: >=5.4
Requires (Dev)
- 00f100/phpdbug: *
- phpunit/phpunit: 6.*
This package is auto-updated.
Last update: 2025-09-18 08:34:46 UTC
README
array_dot method to navigate into array
How to install
Composer:
$ composer require 00f100/array_dot
or add in composer.json
{ "require": { "00f100/array_dot": "*" } }
How to use
<?php $array = []; array_dot($array, 'config.item', 'content'); // Print: content echo array_dot($array, 'config.item');