Last active
December 11, 2015 06:39
-
-
Save geraintluff/4561027 to your computer and use it in GitHub Desktop.
Extracts variables from $_SERVER['PATH_INFO'] using templates: /test/{id}/comments/{commentId}
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function matchUriTemplate($template, $pathInfo=NULL, $stripQuery=TRUE) { | |
$params = array(); | |
if ($pathInfo == NULL) { | |
$pathInfo = $_SERVER['PATH_INFO']; | |
} | |
if ($stripQuery) { | |
$pos = strpos($pathInfo, "?"); | |
if ($pos !== FALSE) { | |
$pathInfo = substr($pathInfo, 0, $pos); | |
} | |
} | |
while (true) { | |
$pos = strpos($template, "{"); | |
if ($pos === FALSE) { | |
if ($pathInfo == $template) { | |
return $params; | |
} else { | |
return FALSE; | |
} | |
} | |
$extractA = substr($pathInfo, 0, $pos); | |
$extractB = substr($template, 0, $pos); | |
if ($extractA != $extractB) { | |
return FALSE; | |
} | |
// Extract the variable name | |
$template = substr($template, $pos + 1); | |
$pathInfo = substr($pathInfo, $pos); | |
$endPos = strpos($template, "}"); | |
$varName = substr($template, 0, $endPos); | |
$template = substr($template, $endPos + 1); | |
// Find the next section | |
$nextPos = strpos($template, "{"); | |
$nextExtract = ($nextPos === FALSE) ? $template : substr($template, 0, $nextPos); | |
if ($nextExtract == "") { | |
$params[$varName] = $pathInfo; | |
return $params; | |
} | |
$endOfValuePos = strpos($pathInfo, $nextExtract); | |
if ($endOfValuePos === FALSE) { | |
return FALSE; | |
} | |
$value = substr($pathInfo, 0, $endOfValuePos); | |
$params[$varName] = $value; | |
$pathInfo = substr($pathInfo, $endOfValuePos); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment