wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



is_ssl › WordPress Function

Seit2.6.0
Veraltetn/v
is_ssl ( Keine Parameter )
Gibt zurück:
  • (bool) True if SSL, otherwise false.
Definiert in:
Codex:
Changelog:
  • 4.6.0

Determines if SSL is used.



Ähnliche Funktionen: is_single, is_rtl, filter_ssl, is_success, esc_sql

Quellcode

function is_ssl() {
	if ( isset( $_SERVER['HTTPS'] ) ) {
		if ( 'on' === strtolower( $_SERVER['HTTPS'] ) ) {
			return true;
		}

		if ( '1' === (string) $_SERVER['HTTPS'] ) {
			return true;
		}
	} elseif ( isset( $_SERVER['SERVER_PORT'] ) && ( '443' === (string) $_SERVER['SERVER_PORT'] ) ) {
		return true;
	}

	return false;
}