This package is deprecated Please consider using an stable alternative for any production code.

Uri Query String Parser and Builder

Build Status Latest Version

This package contains a userland PHP uri query parser and builder.

<?php

use League\Uri\Parser\QueryString;

$pairs = QueryString::parse('module=home&action=show&page=๐Ÿ˜“');
// returns [
//     ['module', 'home'],
//     ['action', 'show'],
//     ['page', '๐Ÿ˜“']
// ];

$str = QueryString::build($pairs, '|');
// returns 'module=home|action=show|page=๐Ÿ˜“'

System Requirements

You need:

Installation

$ composer require league/uri-query-parser

Usage

The parsing/building algorithms preserve pairs order and uses the same algorithm used by JavaScript UrlSearchParams

Parsing the URI query string

Parsing a query string is easy.

<?php

use League\Uri\Parser\QueryString;

$pairs = QueryString::parse('module=home&action=show&page=๐Ÿ˜“');
// returns [
//     ['module', 'home'],
//     ['action', 'show'],
//     ['page', '๐Ÿ˜“']
// ];

Description

<?php

public static function QueryString::parse($query, string $separator = '&', int $enc_type = PHP_QUERY_RFC3986): array;

The returned array is a collection of key/value pairs. Each pair is represented as an array where the first element is the pair key and the second element the pair value. While the pair key is always a string, the pair value can be a string or the null value.

The QueryString::parse method parameters are

Hereโ€™s a simple example showing how to use all the given parameters:

<?php

$pairs = QueryString::parse(
    'module=home:action=show:page=toto+bar&action=hide',
    ':',
    PHP_QUERY_RFC1738
);
// returns [
//     ['module', 'home'],
//     ['action', 'show'],
//     ['page', 'toto bar'],
//     ['action', 'hide'],
// ];

Building the URI query string

To convert back the collection of key/value pairs into a valid query string or the null value you can use the static public QueryString::build method.

<?php

$pairs = QueryString::build([
    ['module', 'home'],
    ['action', 'show'],
    ['page', 'toto bar'],
    ['action', 'hide'],
], '|', PHP_QUERY_RFC3986);

// returns 'module=home|action=show|page=toto%20bar|action=hide';

Description

<?php

public static function QueryString::build(iterable $pairs, string $separator = '&', int $enc_type = PHP_QUERY_RFC3986): ?string;

The static public QueryString::build method :

Just like with QueryString::parse, you can specify the separator and the encoding algorithm to use.

Extracting PHP variables

<?php

public static function QueryString::extract($query, string $separator = '&', int $enc_type = PHP_QUERY_RFC3986): array;
public static function QueryString::convert(iterable $pairs): array;

QueryString::parse and QueryString::build preserve the query string pairs content and order. If you want to extract PHP variables from the query string ร  la parse_str you can use:

both methods, however, do not allow parameters key mangling in the returned array like parse_str;

<?php

use League\Uri\Parser\QueryString;

$query = 'module=show&arr.test[1]=sid&arr test[4][two]=fred&+module+=hide';

$params = QueryString::extract($query, '&', PHP_QUERY_RFC1738);
// $params contains [
//     'module' = 'show',
//     'arr.test' => [
//         1 => 'sid',
//     ],
//     'arr test' => [
//         4 => [
//             'two' => 'fred',
//         ]
//     ],
//     ' module ' => 'hide',
// ];

parse_str($query, $variables);
// $variables contains [
//     'module' = 'show',
//     'arr_test' => [
//         1 => 'sid',
//         4 => [
//             'two' => 'fred',
//         ],
//     ],
//     'module_' = 'hide',
// ];

Exceptions

All exceptions extends the League\Uri\Parser\InvalidUriComponent marker class which extends PHPโ€™s InvalidArgumentException class.

<?php

use League\Uri\Exception\InvalidUriComponent;
use League\Uri\Parser\QueryString;

try {
    QueryString::extract('foo=bar', '&', 42);
} catch (InvalidUriComponent $e) {
    //$e is an instanceof League\Uri\Parser\UnknownEncoding
}