kevburnsjr / php-uri-template-parser

A URI Template Parser for PHP
http://lab.kevburnsjr.com/php-uri-template-parser
GNU General Public License v2.0
18 stars 2 forks source link

PHP URI Template Parser A feature-complete URI Template Parser class for PHP >= 5.2.3 http://lab.kevburnsjr.com/php-uri-template-parser

Dual licensed under the MIT or GPL Version 2 licenses.

As of this writing, URI Template is still very much a moving target. The latest version of the URI Template Spec can be found at http://tools.ietf.org/html/draft-gregorio-uritemplate-04

Usage

require 'URI_Template_Parser.class.php';

$template = new URI_Template_Parser("/users/{userid}"); $url = $parser->expand(array('userid' => 5));

Additional usage examples can be found in the tests file.

TODO: