サイトが稼働しているかどうかを確認するスクリプトを作成しようとしています。すべて正常に動作しますが、サイトがサイトでない場合は、サイトが存在しないことを意味します。そして、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);
?>