得到了这段代码:
<?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函数'test'?
答案 0 :(得分:1)
您可以向服务器发送AJAX请求,以便在x秒后执行该脚本。
var milliSeconds = 1000; // <-- As an example
setInterval( function() {
// <-- Your AJAX request here
}, milliSeconds);