blob: fc2221b1dff02a991267b8faea9cc81da14d6c6c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
function downloadRemailers() {
$url = 'https://echolot.virebent.art/mlist2.txt';
$file = '/var/www/yamnweb/remailers.txt';
if (!file_exists($file) || (time() - filemtime($file) > 86400)) { // Scarica solo se il file non esiste o è più vecchio di 24 ore
file_put_contents($file, file_get_contents($url));
}
}
downloadRemailers();
?>
|