2017 © Pedro Peláez
 

library quip

A simple query string parser

image

sellerlabs/quip

A simple query string parser

  • Tuesday, July 21, 2015
  • by 5outh
  • Repository
  • 27 Watchers
  • 0 Stars
  • 3,208 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 5 Versions
  • 1 % Grown

The README.md

Quip

A query string parser for PHP, (*1)

Touch & Go Example

Say you have the following query:, (*2)

q=age<19,gender=male&embeds=bags.offers&includes=age,gender&excludes=whatever&sort=%2bupdated_at,-count, (*3)

That's quite a doozy! Quip makes parsing this type of query painfully simple:, (*4)

$query = 'q=age<19,gender=male&embeds=snags.offers&includes=age,gender&excludes=whatever&sort=%2bupdated_at,-count'

$quip = (new Quip($query))->parse();

$quip->getIncludes();
// ['age', 'gender']

$quip->getExcludes();
// ['whatever']

$quip->getSorts();
// Array of sort objects, with type (ascending/descending) and field to sort on 

$quip->getEmbeds();
// Array of EmbedChain objects, which house sorted arrays of parsed `x.y` strings

$quip->getExpressions();
// Returns expressions (left-hand-side, right-hand-side and operator) from the `q` parameter

This is still a major work in progress, but I hope it will be useful!, (*5)

The Versions

21/07 2015

dev-master

9999999-dev

A simple query string parser

  Sources   Download

MIT

The Development Requires

by Benjamin Kovach

21/07 2015

v0.1.2

0.1.2.0

A simple query string parser

  Sources   Download

MIT

The Development Requires

by Benjamin Kovach

21/07 2015

v0.1.3

0.1.3.0

A simple query string parser

  Sources   Download

MIT

The Development Requires

by Benjamin Kovach

21/07 2015

v0.1.1

0.1.1.0

A simple query string parser

  Sources   Download

MIT

The Development Requires

by Benjamin Kovach

09/06 2015

v0.1.0

0.1.0.0

A simple query string parser

  Sources   Download

MIT

The Development Requires

by Benjamin Kovach