每2小时取消链接.txt文件

时间:2014-01-12 02:09:07

标签: php

我正在查看PHP站点并找到“unlink”脚本:

我想要的是每2小时自动取消链接“usernames.txt”文件的时间

有可能吗?

谢谢:)

2 个答案:

答案 0 :(得分:0)

是的,是的。
使用内容

创建unlinker.php
<?PHP
unlink('usernames.txt');
?>

并创建cron以每两个小时执行一次该文件。

顺便说一句,该代码是示例代码。你不应该>在生产中使用它

答案 1 :(得分:0)

这就是我要做的事情:

$current_time = time();
$last_deleted = 0;    

if (file_exists("time.txt") {
    $last_deleted = file_get_contents("time.txt");

    if ($current_time - $last_deleted >= 7200) { // two hours
        file_put_contents("time.txt", $current_time);
        unlink("usernames.txt");
    }
}
else
    file_put_contents("time.txt", $current_time);