首页 > 代码库 > laravel常用的函数

laravel常用的函数

app_path     //app文件夹的绝对路径base_path   //laravel应用所在的绝对路径public_path     //public所在的绝对路径storage_path  //storage所在的绝对路径asset   //生成资源urlView::share(‘name‘,‘value‘);   //在所有视图中共享数据父视图-子视图URL::action(‘FooController@method‘)  //获取一个操作的链接Route::currentRouteAction()        //获取当前控制器操作的名称Route::get(‘profile‘,array(‘before‘=>‘auth‘,‘users‘=>‘userController‘=>‘UserController@showProfile‘));//在控制器路由中指定过滤器

 

laravel常用的函数