0

得到这个代码:

<?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 函数“测试”?

4

1 回答 1

1

您可以在 x 秒后向服务器发送 AJAX 请求以执行该脚本。

var milliSeconds = 1000; // <-- As an example
setInterval( function() {
  // <-- Your AJAX request here
}, milliSeconds);
于 2013-03-04T13:20:53.380 回答