URIbase() публичный Метод

Returns the base URI for the request.
public URIbase ( boolean $pathonly = false ) : string
$pathonly boolean If false, prepend the scheme, host and port information. Default is false.
Результат string The base URI string
Пример #1
0
 public function URIbase($pathonly = false)
 {
     if (isset(static::$uriBase)) {
         return static::$uriBase;
     }
     return parent::URIbase($pathonly);
 }