每2秒cUrl请求并回显结果

时间:2014-02-28 10:43:01

标签: php ajax function curl

我希望每隔2秒发送一次cUrl变量,并在页面中显示结果。 我是使用Ajax的魔杖,但是我如何使用函数参数发送cUrl细节?

感谢帮帮忙,祝你有个美好的一天:)

2 个答案:

答案 0 :(得分:0)

你可以每隔两秒调用你的ajax函数,就像这个js的setInteval函数

setInterval(your_ajax_function,2000); // call your_ajax_function in every 2 seconds

function your_ajax_function()
{
    // ajax function statements here
    // and send request to the php file
    // get output from php file as response
    // show response in your desired div
}   

现在在php文件中你可以调用curl函数等,并将输出作为echo

答案 1 :(得分:0)

使用PhP的CURL仍然是基于服务器的,因为所有的PhP代码都是。我自己可以想到每2秒发送一次请求的唯一方法就是强制每2秒刷新一次页面。

    $requiredPage = "example.com";
    header('Refresh:2;url='.$requiredPage);