API15:JBrowser/isSSLConnection/ja

出典: Joomla! ドキュメンテーション

目次

Description

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

[Edit Descripton]



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]



Examples

<CodeExamplesForm />