每x分钟调用一次php函数

时间:2013-03-04 13:19:52

标签: javascript

得到了这段代码:

<?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'?

1 个答案:

答案 0 :(得分:1)

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

var milliSeconds = 1000; // <-- As an example
setInterval( function() {
  // <-- Your AJAX request here
}, milliSeconds);