zobzn/zbz-uri

URI Manipulation

0.0.1 2016-01-08 12:16 UTC

This package is not auto-updated.

Last update: 2024-04-08 12:17:27 UTC


README

Build Status Software License

URI manipulation library

Installation

composer require zobzn/zbz-uri

Basic Usage

$uri = Zbz\Uri::get('http://examplex.org/index.php?key1=val1#title')
    ->withScheme('https')
    ->withAuthority('example.com')
    ->withPath('/index.htm')
    ->withQuery('key2=val2')
    ->withFragment('content');

var_export(array(
    (string) $uri,
    $uri->getScheme(),
    $uri->getAuthority(),
    $uri->getPath(),
    $uri->getQuery(),
    $uri->getFragment(),
));