PHPでドメインのSSL証明書の期限日を取得する
結構古めの記事しかなかったので自分のコピペ用にメモ
/*
* $domainからSSLの期限を取得
*/
public static function getSSLDueDate($domain)
{
// 外部接続用のstream_contextを取得
$stream_context = stream_context_create([
'ssl' => [
'capture_peer_cert' => true
// エラー回避用
, 'verify_peer' => false
, 'verify_peer_name' => false
]
]);
// 外部接続
$resource = stream_socket_client(
'ssl://' . $domain . ':443'
, $err_no, $err_str, 5
, STREAM_CLIENT_CONNECT, $stream_context
);
// ドメインの情報を取得
$context = stream_context_get_params($resource);
$parsed = openssl_x509_parse(
$context['options']['ssl']['peer_certificate']
);
// SSL期限を返す
return (strpos($parsed['subject']['CN'], $domain) !== false)
? date('Y-m-d', $parsed['validTo_time_t']) : null;
}
Author And Source
この問題について(PHPでドメインのSSL証明書の期限日を取得する), 我々は、より多くの情報をここで見つけました https://qiita.com/hondy12345/items/7d493b8544f9eb2cd747著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .