我正在尝试制作脚本来检查站点是向上还是向下。一切正常,但是当站点不是站点时,我的意思是该站点不存在。然后php执行加载时间增加。我想以某种方式处理这个问题。如何检查站点是否不存在并中断 curl 会话?这是我的脚本:
<?php
$ch = curl_init('http://86.100.69.228/'); // e.g. for this will increase execution time because the site doesn't exists
curl_setopt($ch, CURLOPT_NOBODY, true);
curl_exec($ch);
$status_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
echo $status_code;
curl_close($ch);
?>