URL::full PHP Méthode

full() public static méthode

Get the full URL for the current request.
public static full ( ) : string
Résultat string
        public static function full()
        {
            return \Illuminate\Routing\UrlGenerator::full();
        }

Usage Example

 public function getIndex($option = null)
 {
     Session::put('curr_page', URL::full());
     $view = View::make('home');
     $view['sid'] = Session::getId();
     return $view;
 }
All Usage Examples Of URL::full