サイトがアップであるかダウンであるかをチェックするスクリプトを作ろうとしています。すべて正常に動作しますが、サイトがサイトでない場合、そのサイトは存在しません。そして、PHPの実行負荷時間が増加します。私は何とかこれを処理したい。サイトが存在していないかどうかをチェックし、カールセッションを中断する方法?ここに私のスクリプトは次のとおりです。PHP:カールレスポンスの扱い方
<?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);
?>