naturalbuild / fetch-ssl-info
Fetch SSL info using php
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/naturalbuild/fetch-ssl-info
Requires
- php: >=5.6
This package is not auto-updated.
Last update: 2025-10-07 23:13:15 UTC
README
FETCH SSL INFO USING PHP
require_once "vendor/autoload.php"; $certInfo = Ssl\Ssl::getSSLinfo('stackoverflow.com'); echo $certInfo->validFrom .'<br>'; echo $certInfo->validTo .'<br>'; echo $certInfo->issuer .'<br>'; echo $certInfo->validity .'<br>'; echo $certInfo->validitytot .'<br>'; echo $certInfo->crtValRemaining .'<br>';