====== isSSL ======
{#JAPI Joomla.Framework Environment JURI::isSSL #}
Checks whether the current URI is using HTTPS.
===== Syntax =====
boolean isSSL ()
===== Examples =====
$uri = new JURI( 'https://forum.joomla.org/index.php?topic=46226&action=new' );
echo ($uri->isSSL()) ? "This site is secure." : "This site is unsecure";
might produce:
This site is secure.