a.php <?phpheader("Content-type: text/html; charset=utf-8");date_default_timezone_set("Asia/Shanghai"); $start = microtime(true); function fsockopen_g ...
a.php
<?php
header("Content-type: text/html; charset=utf-8");
date_default_timezone_set("Asia/Shanghai");
$start = microtime(true);
function fsockopen_get($domain, $url)
{
$fp = fsockopen($domain, 80, $errno, $errstr, 30);
if (!$fp) {
echo "$errstr ($errno)<br />\n";
} else {
$out = "GET " . $url . " / HTTP/1.1\r\n";
$out .= "Host: " . $domain . "\r\n";
$out .= "Connection: Close\r\n\r\n";
fwrite($fp, $out);
/*忽略執行結果
while (!feof($fp)) {
echo fgets($fp, 128);
}*/
fclose($fp);
}
}
fsockopen_get('temp.com', '/b.php');
$end = microtime(true);
$time= $end - $start;
//精確到十位小數,可自行調節
echo number_format($time, 10, '.', '')." seconds";
b.php
<?php
header("Content-type: text/html; charset=utf-8");
file_put_contents('54321.log', microtime(true), FILE_APPEND);
sleep(20);
file_put_contents('54321.log', microtime(true), FILE_APPEND);