PHP/File Directory/File Delete — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 07:04, 26 мая 2010
Delete a file
<?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";
}
?>