I'm new to Slim Framework. How to get the base URL like with the Codeigniter function base_url()?
base_url()
Thanks
You need to set the base url manually FIRST before you can get it as in this:
$app->hook('slim.before', function () use ($app) { $app->view()->appendData(array('baseUrl' => '/base/url/here')); });
http://help.slimframework.com/discussions/questions/49-how-to-deal-with-base-path-and-different-routes
1.4m articles
1.4m replys
5 comments
57.0k users