Slim Framework Base URL

后端 未结 7 534
太阳男子
太阳男子 2020-12-16 23:34

I\'m new to Slim Framework. How to get the base URL like with the Codeigniter function base_url()?

Thanks

7条回答
  •  执念已碎
    2020-12-17 00:18

    Try this in index.php to set the base url for the view

    $app->hook('slim.before', function () use ($app) {
        $posIndex = strpos( $_SERVER['PHP_SELF'], '/index.php');
        $baseUrl = substr( $_SERVER['PHP_SELF'], 0, $posIndex);
        $app->view()->appendData(array('baseUrl' => $baseUrl ));
    });
    

提交回复
热议问题