Skip to content

Instantly share code, notes, and snippets.

@ferox
Forked from olivierbellone/tls_test.php
Created August 29, 2023 12:13
Show Gist options
  • Save ferox/2f902a152b2c8d6e1a30189dad0e17e1 to your computer and use it in GitHub Desktop.
Save ferox/2f902a152b2c8d6e1a30189dad0e17e1 to your computer and use it in GitHub Desktop.
Simple TLS version test for PHP, using howsmyssl.com
<?php
$ch = curl_init('https://www.howsmyssl.com/a/check');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($ch);
curl_close($ch);
$json = json_decode($data);
echo "<pre>TLS version: " . $json->tls_version . "</pre>\n";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment