これを達成するには、探しているタイムアウトを単純にテストする必要があると思います。したがって、次のシナリオが表示されます。
- URL への接続タイムアウト (接続タイムアウト - ホストダウン)
- 操作のタイムアウト (Operation Time Out)
- 低速接続によるタイムアウト (Low Speed Time)
他の方法を使用して、最初のタイムアウトを確認できます。それでは、それをしましょう:
<?php
$site="http://www.google.com";
$content = file_get_contents($site);
if($content === false){
// Host dead, handle error here...
}
?>
参考:PHPのfile_get_contents()関数のワーニングはどうすればいいの?
この時点で、接続タイムアウトが発生しないことがわかっています。curl の実行を続行すると、操作のタイムアウトまたは速度になることがわかります。
<?php
function curl_run($opts){
$content = file_get_contents($opts[CURLOPT_URL]);
if($content === false){
return false;
} else {
$resp = array();
$time_start = microtime(true);
$ch = curl_init();
curl_setopt_array($ch, $opts);
$resp['result'] = curl_exec($ch);
$time_end = microtime(true);
$resp['info'] = curl_getinfo($ch);
if(curl_errno($ch)){
$resp['error'] = curl_error($ch);
}
curl_close($ch);
$resp['time'] = $time_end - $time_start; // Time it took
return $resp;
}
}
$url = isset($_GET['url'])?$_GET['url']:"http://www.google.com/";
$options = array(
CURLOPT_URL => $url,
CURLOPT_HEADER => true,
CURLOPT_TIMEOUT_MS => 1000,
CURLOPT_CONNECTTIMEOUT_MS => 10,
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_VERBOSE => 1
);
$results = curl_run($options);
if($results){
echo "<h2>Options</h2>\r\n";
echo "<pre>";
foreach($options as $k => $v){
echo "$k: $v\r\n";
}
echo "</pre>";
echo "<h2>Info</h2>\r\n";
echo "<pre>";
foreach($results['info'] as $k => $v){
echo "$k: $v\r\n";
}
echo "time: {$results['time']}\r\n";
echo "</pre>\r\n";
if(isset($results['error'])){
echo "<h2>Error</h2>\r\n";
echo "<pre>{$results['error']}</pre>\r\n";
}
echo "<h2>Response</h2>\r\n";
echo "<pre>" . htmlentities($results['result']) . "</pre>";
}
?>
そのすべてを見て、操作の実行にかかった時間が Timeout 設定の 1 つに近かったかどうかを判断できるはずです。そうしないと、多くのデータも下にあることになりinfo
ます。false が返された場合、ホストに到達できなかったことがわかります。
さらにテストを行いました。ここで確認できます: http://www.yrmailfrom.me/projects/php/curl_test1.php?url=http://www.apple.com/
Apple.com が 14 ミリ秒かかっていることがわかったので、良いテストになりました。
出力例:
Options
10002: http://www.apple.com/
42: 1
155: 1000
156: 10
19913: 1
41: 1
Info
url: http://www.apple.com/
content_type:
http_code: 0
header_size: 0
request_size: 0
filetime: -1
ssl_verify_result: 0
redirect_count: 0
total_time: 0.014634
namelookup_time: 0.004297
connect_time: 0
pretransfer_time: 0
size_upload: 0
size_download: 0
speed_download: 0
speed_upload: 0
download_content_length: -1
upload_content_length: -1
starttransfer_time: 0
redirect_time: 0
redirect_url:
primary_ip:
certinfo: Array
primary_port: 0
local_ip:
local_port: 0
time: 0.014760017395
Error
Connection timed out after 14 milliseconds
Response