URL::full PHP Метод

full() публичный статический Метод

Get the full URL for the current request.
public static full ( ) : string
Результат string
        public static function full()
        {
            return \Illuminate\Routing\UrlGenerator::full();
        }

Usage Example

Пример #1
0
 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