Skip to content

Instantly share code, notes, and snippets.

View shigwata's full-sized avatar
:octocat:
🐈🐈

shigwata shigwata

:octocat:
🐈🐈
View GitHub Profile
@shigwata
shigwata / gist:4943170
Last active December 13, 2015 16:48
sslページか判断
<?php
function sslchk()
{
if ((false === empty($_SERVER['HTTPS'])) && ('off' !== $_SERVER['HTTPS'])) {
return true;
}
return false;
}