1

根据我所做的研究,我认为我可能不得不使用 Ajax,但我对它并不是很熟悉,而且我似乎无法为我的功能找到正确的答案。

我没有使用数据库(也许我应该但我正在寻找一个短期修复)。我正在使用用户数据输入到使用 PHP 的 csv 文件。

我的 php 循环遍历 csv 文件并显示包含内容的表格。它只是一列 Twitter 用户名。

<php?    
echo "<table>\n";
$file = file("Twitter.csv");
$file = array_reverse($file);
foreach($file as $f){
$string=$f; 
$string=str_replace("\r\n","",$string);
    echo "<tr>\n";
            echo "<td><a href='http://twitter.com/".$string."' target='_blank'><img src='https://api.twitter.com/1/users/profile_image?screen_name=".$string."&size=bigger' border='0'></td>\n<td>\n<a href='https://twitter.com/".$string."' class='twitter-follow-button' data-show-count='false' data-lang='en' data-size='large'>Follow @".$string."</a><script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src='//platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document,'script','twitter-wjs');</script>";
    echo "</td>\n</tr>\n";
    }
echo "\n</table>";
?>

一旦用户授权了 twitter 应用程序并且我获得了他们的用户名,他们将被重定向到列出其他要关注的名称的页面。但是,我希望该页面在 csv 文件的行数更改时更新。

我需要能够每 x 秒运行一次脚本以获取行数以及它是否已更改为刷新。

我想逻辑很简单:

$linecount = count(file('Twitter.csv'));
every x seconds{
    $checkcount = count(file('Twitter.csv'));
    if ($checkcount != $linecount){
     refresh page
    }
 }

我觉得逻辑是正确的——我只是没有受过足够的教育,无法弄清楚如何编写该代码来工作。

如果文件没有更新,页面将不会刷新,但代码仍将每 x 秒执行一次,直到文件发生更改。

4

1 回答 1

2

The solution can be done in a few steps (untested):

  • Your PHP script writes the current value of filemtime('Twitter.csv') into a block of JavaScript:
echo '<script>var currentTS = ', (int)filemtime('Twitter.csv'), ';</script>';
  • Create a small PHP script that returns the modification time of Twitter.csv:
echo json_encode(array('ts' => filemtime('Twitter.csv')));
  • Write a JavaScript function that fetches the timestamp via AJAX using some simple jQuery:
function myFunction() {
    $.ajax({
      url: '/path/to/check_mod_time.php',
      timeout: 2000, // don't wait too long
      success: function(data) {
        if (currentTS < data.ts) {
            location.reload();
        }
    });
}
  • Let your function get called every X seconds using setInterval():
setInterval(myFunction, 5000) // run every 5 seconds
于 2012-09-28T14:46:55.320 回答