Home >Backend Development >PHP Tutorial >Problems with Socket_Read in PHP_PHP Tutorial

Problems with Socket_Read in PHP_PHP Tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-20 11:00:011029browse

 

error_reporting(E_ALL);
set_time_limit(0);
$runtimes = 100;

for ($i=0; $ic78ae1393071808678fa96a3e115a927 1)
{
echo ("SOCKET_READ_ERROR: Timeout!!!");
$str = "";
break;
}
$str .= $out;
} while ($out != "");

socket_close($socket);
return $str;
}
/*
function f_socket($website,$url)
{
$fp = fsockopen($website, 80, $errno, $errstr, 30);
if (!$fp)
{
}
else
{
$out = "GET " . $url . " HTTP/1.1 ";
$out .= "Host: " . $website . " ";
$out .= "Connection: Close ";
fwrite($fp, $out);
$str = "";
$start_time = time();
while (!feof($fp))
{
$str .= fread($fp, 8192);
if (time()-$start_time > 1)
{
$str = "";
echo "timeout!!!";
break;
}
}
return $str;
}
}
*/
?>


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/445541.htmlTechArticleerror_reporting(E_ALL); set_time_limit(0); $runtimes = 100; for ($i=0; $i$runtimes; $i ) { $str = f_socket(www.baidu.com,/s?wd=10000 . $i); echo . $str . ; } function f_socket($web...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn