API16

JURI/getScheme

From Joomla! Documentation

< API16:JURI

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Get URI scheme (protocol) ie. http, https, ftp, etc...



Syntax[edit]

getScheme()


Returns[edit]

string The URI scheme.

Defined in[edit]

libraries/joomla/environment/uri.php

Importing[edit]

jimport( 'joomla.environment.uri' );

Source Body[edit]

public function getScheme()
{
        return $this->_scheme;
}



Examples[edit]

Code Examples[edit]