Table of Contents

getScheme

API Package Subpackage Class Method Reference Last reviewed Doc status
API Home Package Joomla.Framework Subpackage Environment Class JURI Method getScheme Reference getScheme() Never Work in Progress

Gets the URI scheme (protocol - http, https, ftp, etc).

Syntax

string getScheme ()

Examples

Example

$uri = new JURI( 'http://forum.joomla.org/index.php?topic=46226&action=new' );
echo "Scheme: " . $uri->getScheme();

might produce:

Result

Scheme: http