API15

JBrowser/isSSLConnection

From Joomla! Documentation

< API15:JBrowser
Revision as of 17:19, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Determine if we are using a secure (SSL) connection. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JBrowser/isSSLConnection|Edit ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The "API15" 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]

Determine if we are using a secure (SSL) connection.

[Edit Descripton]

Template:Description:JBrowser/isSSLConnection

Syntax[edit]

isSSLConnection()


Returns[edit]

boolean True if using SSL, false if not.

Defined in[edit]

libraries/joomla/environment/browser.php

Importing[edit]

jimport( 'joomla.environment.browser' );

Source Body[edit]

function isSSLConnection()
{
    return ((isset($_SERVER['HTTPS']) &&
        ($_SERVER['HTTPS'] == 'on')) ||
        getenv('SSL_PROTOCOL_VERSION'));
}

[Edit See Also] Template:SeeAlso:JBrowser/isSSLConnection

Examples[edit]

<CodeExamplesForm />