file_get_contents 시간 초과 설정
// 스트림 컨텍스트 생성
$context = stream_context_create(array(
) 'http' => array(
'timeout' => 3000 //타임아웃 시간(초)
)
))
// URL 내용 가져오기
$ 내용 = file_get_contents('http://sample.com', 0, $context);
참조: http://www.acwind .net /blog/archives/1269
위 내용은 관련 측면을 포함하여 file_get_contents 시간 초과 설정을 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.