得到了这个代码,它应该检查 url 是否可用并给我 ping:
<?php
function test ($url){
$starttime = microtime(true);
$valid = @fsockopen($url, 80, $errno, $errstr, 30);
$stoptime = microtime(true);
echo (round(($stoptime-$starttime)*1000)).' ms.';
if (!$valid) {
echo "Status - Failure";
} else {
echo "Status - Success";
}
}
test('google.com');
?>
我是如何做到的,所以这个函数会被调用,让我们说 10 分钟 1 小时(总共 6 次)?