April 1, 2012

FuelPHPのroutes.phpの値を取得する。

メモ。

-- routes.php --
<?php
return array(
    '_root_'  => 'index/index',  // The default route
    '_404_'   => 'common/404',    // The main 404 route
);
--

の時、「'index/index'」は
Router::$routes['_root_']->translation
で取得できました。

No comments:

Post a Comment