PHP code example of ssigwart / ssl-checker
1. Go to this page and download the library: Download ssigwart/ssl-checker library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ssigwart / ssl-checker example snippets
try
{
SSLChecker::setTimeout(5); // Optionally, set a timeout
$sslCert = SSLChecker::getSSLInfoForDomain('example.org');
} catch (SSLCheckerException $e) {
// Handle exceptions. This
// Get domain
print $sslCert->getCommonName() . PHP_EOL; // Should return "www.example.org"
// Get serial number
print $sslCert->getSerialNumber() . PHP_EOL;
// Get validity timestamps
print $sslCert->getIssuedTs() . PHP_EOL;
print $sslCert->getExpirationTs() . PHP_EOL;
// Check if certificate is valid for the time
print ($sslCert->isCertificateValidForTime(time()) ? 'Valid' : 'Not Valid') . PHP_EOL;
// Check if certificate is valid for domain and time
print ($sslCert->isCertificateValidForDomainTime('example.org', time()) ? 'Valid' : 'Not Valid') . PHP_EOL;