2013-06-04 65 views

回答

2

我假設你要求一個PHP應用程序。

在http上下文中根據this文檔設置截止日期。

$options = ["http" => ["timeout" => 60]]; 
$context = stream_context_create($options); 
$data = file_get_contents("http://foo.bar", false, $context); 
0

試試這個

$context = 
    array("http"=> 
     array(
     "timeout" => 60 
    ) 
    ); 
$context = stream_context_create($context); 
$result = file_get_contents("http://example.com", false, $contex); 
相關問題