fork download
  1. <?php
  2. class Route {
  3.  
  4. public function __construct(array $route)
  5. {
  6. $this->name = key($route);
  7. $this->path = $route['path'];
  8. $this->controller = $route['controller'];
  9. $this->action = $route['action'];
  10.  
  11. }
  12. }
  13. $routes = array(
  14. 'default_route' => array
  15. (
  16. 'path' => '/',
  17. 'controller' => 'IndexController',
  18. 'action' => 'indexAction'
  19. ),
  20. 'hello_route' => array
  21. (
  22. 'path' => '/hello',
  23. 'controller' => 'HelloController',
  24. 'action' => 'helloAction'
  25. )
  26. );
  27. foreach ($routes as $key => $val):
  28. $routeObj = new Route($routes[$key]);
  29.  
  30. $newRouteObjs[$key] = $routeObj;
  31. endforeach;
  32. echo '<pre>', print_r($newRouteObjs, true), '</pre>';
  33.  
Success #stdin #stdout 0.03s 26012KB
stdin
Standard input is empty
stdout
<pre>Array
(
    [default_route] => Route Object
        (
            [name] => path
            [path] => /
            [controller] => IndexController
            [action] => indexAction
        )

    [hello_route] => Route Object
        (
            [name] => path
            [path] => /hello
            [controller] => HelloController
            [action] => helloAction
        )

)
</pre>