Skip to content

rollingWolf/queryable-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Queryable-PHP

PHP port of Queryable

This is a PHP port of QUeryable a tiny NoSQL-like database that allows structured querying of an array of objects. It stores as a JSON string.

Examples

$config = array(
    'dbDir' => realpath('.'),
    'dbName' => 'test.db'
);
$DB = \rollingWolf\QueryablePHP\QueryablePHP::open($config);
$DB->insert('[{president:"George Washington",took_office:1789},{president:"John Adams",took_office:1797},{president:"Thomas Jefferson",took_office:1801},{president:"James Madison",took_office:1809}]');
$DB->find('{president:"/^T/i"}');
$DB->save();

The script allows slack JSON (PHP vs javascript style) and therefore doesnt require "" around president.

About

A PHP port of Queryable

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages