file_get_contents タイムアウト設定
// ストリームコンテキストを作成します
$context = stream_context_create(array(
) 'http' => ; 配列(
'timeout' => 3000 //タイムアウト、秒単位
));
// URL のコンテンツを取得します
$の内容 = file_get_contents('http://sample.com', 0, $context);
参考: http://www.acwind.net/blog/archives/1269
上記では、関連する側面を含め、file_get_contents のタイムアウト設定を紹介しています。PHP チュートリアルに興味のある友人に役立つことを願っています。