parser.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php namespace System\Route;
  2. class Parser {
  3. /**
  4. * Get the parameters that should be passed to the route callback.
  5. *
  6. * @param string $uri
  7. * @param string $route
  8. * @return array
  9. */
  10. public static function parameters($uri, $route)
  11. {
  12. // --------------------------------------------------------------
  13. // Split the request URI into segments.
  14. // --------------------------------------------------------------
  15. $uri_segments = explode('/', $uri);
  16. // --------------------------------------------------------------
  17. // Split the route URI into segments.
  18. // --------------------------------------------------------------
  19. $route_segments = explode('/', $route);
  20. // --------------------------------------------------------------
  21. // Initialize the array of parameters.
  22. // --------------------------------------------------------------
  23. $parameters = array();
  24. // --------------------------------------------------------------
  25. // Extract all of the parameters out of the URI.
  26. //
  27. // Any segment wrapped in parentheses is considered a parameter.
  28. // --------------------------------------------------------------
  29. for ($i = 0; $i < count($route_segments); $i++)
  30. {
  31. if (strpos($route_segments[$i], '(') === 0)
  32. {
  33. $parameters[] = $uri_segments[$i];
  34. }
  35. }
  36. return $parameters;
  37. }
  38. }