Jump to content

PHP unlink, rmdir (stergerea a fisierelor, foldere)


Recommended Posts

Posted

PHP unlink este o functie prestabilita in php, aceasta este folosita pentru a sterge un anumit fisier.

unlink('fisier.php');

aceasta contine doar o singura variabila , aceea fiind fisierul pe care vrei sa il stergi.

rmdir('folder');

aceasta este o functie care sterge un folder, la fel ca la unlink.

Am vazut ca cineva (@VaSeA[]) a dorit sa stie cum poti sterge un folder sau un fisier dupa un timp.

Just PHP:

<?php

$data = date("d/m/Y"); // DATA CURENTA d = zile , m = luni , Y = ani
$data_x = "24/08/2017"; // DATA cand vrei sa ti se execute if-ul

if($data == $data_x){ // if (daca), pe acesta il folosim ca sa verificam daca DATA CURENTA a ajust la DATA STABILITA
    unlink('test.txt'); // COMANDA PENTRU A STERGE FISIERUL
}
else
{
    echo "INCA NU A VENIT TIMPU'"; // IN CAZ DACA NU S-A AJUNS LA DATA STABILITA VOM PRIMI UN MESAJ
}

?>

Tineti minte ca acest script trebuie executat de cineva.

Daca vreti sa fie executat automat puteti creea un CRONJOB din cpanel (difera de la host la host).

  • gaby changed the title to PHP unlink, rmdir (stergerea a fisierelor, foldere)

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.