(Yaf >=1.0.0)
Yaf_Route_Simple::__construct — Yaf_Route_Simple constructor
$module_name
   , string $controller_name
   , string $action_name
   )Yaf_Route_Simple将从query string中获得路由信息。这个构造函数的参数会被作为键到$_GET中去寻找路由信息。
本函数还未编写文档,仅有参数列表。
module_namemodule信息的键名。
controller_namecontroller信息的键名。
action_nameaction信息的键名。
总是返回TRUE
Example #1 Yaf_Route_Simple::route()example
<?php
   $route = new Yaf_Route_Simple("m", "controller", "act");
   Yaf_Router::getInstance()->addRoute("simple", $route);
?>
Example #2 Yaf_Route_Simple::route()example
Request: http://yourdomain.com/path/?controller=a&act=b => module = default(index), controller = a, action = b Request: http://yourdomain.com/path => module = default(index), controller = default(index), action = default(index)