程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php文件刪除unlink()詳解,

php文件刪除unlink()詳解,

編輯:關於PHP編程

php文件刪除unlink()詳解,


請記住從PHP文件創建的教訓,我們創建了一個文件,名為testFile.txt 。

$myFile = "testFile.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
fclose($fh);
判斷是否刪除了. http://www.manongjc.com/article/1351.html
$myFile = "testFile.txt";
unlink($myFile);

 

$filename = 'file.txt';
fopen($filename,'a+');
if(!unlink($filename))
{
echo "文件{$filename}刪除失敗"; //  http://www.manongjc.com/article/1351.html
}
else
{
echo "文件{$filename}刪除成功";
}
?>

 

刪除目錄下所有文件

function delFileUnderDir( $dirName="../Smarty/templates/templates_c" )
{
// http://www.manongjc.com/article/1351.html
if ( $handle = opendir( "$dirName" ) ) {
   while ( false !== ( $item = readdir( $handle ) ) ) {
   if ( $item != "." && $item != ".." ) {
   if ( is_dir( "$dirName/$item" ) ) {
         delFileUnderDir( "$dirName/$item" );
   } else {
   if( unlink( "$dirName/$item" ) )echo "成功刪除文件: $dirName/$item<br />n";
   }
   }
   }
   closedir( $handle );
}
}

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved