PHP/File Directory/File Delete — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Версия 13:37, 26 мая 2010

Delete a file

   <source lang="html4strict">

<?php

  $file_delete = "home/meeta/my.php";
  
  if (unlink($file_delete)) {
     echo "The file was deleted successfully.", "\n";
  } else {
     echo "The specified file could not be deleted. Please try again.", "\n";
  }

?>


      </source>