ajthinking / data-query

Access properties and methods in uncertain PHP data structures

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Query spaghetti data structures 🍝

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.

Installation

composer require ajthinking/data-query

Usage

use Ajthinking\DataQuery\DataQuery;

DataQuery::in($spaghetti)
	->prop
	->method('some arg')    
	->nestedProp
	['deep nested prop with spaces']
	->get(); // result or null

License

The MIT License (MIT). Please see License File for more information.

About

Access properties and methods in uncertain PHP data structures

License:MIT License


Languages

Language:PHP 100.0%