得到这个代码:
<?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');
?>
我想使用这样的东西:
<script>
setInterval(function(){<?php test('google.com'); ?>},3000);
</script>
我如何用 setInterval 调用 php 函数“测试”?