Access properties and methods in uncertain PHP data structures. Supports object and array access and can forward method calls. It automatically interprets the underlying data structure (JSON, array or object) and simply gives you the (nested) result.
composer require ajthinking/data-query
use Ajthinking\DataQuery\DataQuery;
DataQuery::in($spaghetti)
->prop
->method('some arg')
->nestedProp
['deep nested prop with spaces']
->get(); // result or null
The MIT License (MIT). Please see License File for more information.