12 lines
209 B
PHP
12 lines
209 B
PHP
<?php
|
|
|
|
function proto() {
|
|
if (isset($_SERVER['REQUEST_SCHEME']))
|
|
return $_SERVER['REQUEST_SCHEME'];
|
|
|
|
if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on')
|
|
return 'https';
|
|
|
|
return 'http';
|
|
}
|
|
// eof
|