我正在查看PHP站点并找到“unlink”脚本:
我想要的是每2小时自动取消链接“usernames.txt”文件的时间
有可能吗?
谢谢:)
答案 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);