1
我想的路線是這樣的: http://myapp.com/mycontroller/...?x= ...通配符鋰路由
其中後myController的一切都還是個未知數。我不知道路徑,我不知道任何參數。路由路徑和參數應該顯示爲一個變量。
// route in routes.php
Router::connect('/mycontroller/*', 'Mycontroller::index');
// the index function of Mycontroller class
public function index($pathWithParameters) {
print_r($pathWithParameters); // something like: 'hello/world?name=mewel&id=123
}
這可能嗎?
你也可以在你的控制器中使用func_get_args()。看看默認的PagesController的例子 – 2012-02-24 02:03:36
你可以使用「編輯」而不是評論在這裏。 – greut 2012-02-24 12:52:25