API15

API15:JBrowser/isSSLConnection

From Joomla! Documentation

Revision as of 22: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)

Description

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

[Edit Descripton]

Template:Description:JBrowser/isSSLConnection

Syntax

isSSLConnection()


Returns

boolean True if using SSL, false if not.

Defined in

libraries/joomla/environment/browser.php

Importing

jimport( 'joomla.environment.browser' );

Source Body

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

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

Examples

<CodeExamplesForm />