file_put_contents设置超时时间
$opt = array(
'http'=>array(
'method'=>"GET",
'header'=>"Content-Type: text/html; charset=utf-8",
'timeout'=>2
)
);
$context = stream_context_create($opt);
file_get_contents("http://www.baidu.com", false, $context);curl中的超时设置:curl_setopt($ch, CURLOPT_TIMEOUT, 3)
$ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "http://www.baidu.com"); curl_setopt($ch, CURLOPT_TIMEOUT, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); $data = curl_exec($ch); curl_close($ch);
fscoketopen 超时
function request($host, $uri, $timeout = 3, $port = 80)
{
$fp = fsockopen ( $host, 80, $errno, $errstr, $timeout );
if (! $fp) {
echo "$errstr ($errno)<br />\n";
exit;
} else {
$data = '';
stream_set_timeout ( $fp, $timeout ); //#
$out = "GET {$uri} HTTP/1.1\r\n";
$out .= "Host: {$host}\r\n";
$out .= "Connection: Close\r\n\r\n";
fwrite ( $fp, $out );
while ( ! feof ( $fp ) ) {
$data .= fgets ( $fp, 128 );
}
fclose ( $fp );
return $data;
}
}
echo request('www.scutephp.com', '/siqi');
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号