예제 #1
0
 /**
  * match POST request types
  * @param string $route the route to match against
  * @param string $action the action to take, usually in the form of controller->method
  * @param array $args an array of matched parameters to pass to the routing controller class
  */
 static function post($route, $action, $args = null)
 {
     route::match_route('post', $route, $action, $args);
 }