标签: php
目标是测试网站的https版本是否存在:
ex:http://www.exemple.com:https://www.exemple.com是否存在?
我尝试过:
<?php $url = 'https://www.exemple.com'; print_r(get_headers($url)); ?>
但这需要30秒才能发回错误。 是否有更快的方法来测试域名的https存在?