http://github.com/KevBurnsJr/php-uri-template-parser
71 out of 71 pass (0 failures) http://php-uri-template-parser.hackyhack.net/tests.php
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: * Implement partial modifiers (":" and "^") * Throw some meaningful errors when things go wrong