PHP unlink

PHP unlink是一種基於php語言開發的可以刪除檔案並返回true或false值的功能函式。

正文

定義和用法

unlink() 函式刪除檔案。

若成功,則返回 true,失敗則返回 false。

語法

unlink(filename,context)

參數描述
filename 必需。規定要刪除的檔案。
context 可選。規定檔案句柄的環境。

提示和注釋

注釋:對 context 的支持是 PHP 5.0.0 添加的。

例子

<?php

$file = "test.txt";

if (!unlink($file)) {
echo ("Error deleting $file");

} else {

echo ("Deleted $file");

}

?>

例子1

刪除目錄下所有檔案

<?php

function tree($directory)

{

$mydir=dir($directory);

echo "<ul>n";

while($file=$mydir->read()){

if((is_dir("$directory/$file")) and ($file!=".") and ($file!=".."))

{echo "<li><font color="#ff00cc"><b>$file</b></font></li>n";

tree("$directory/$file");

}

else{

$a = explode('.',$file);

if($a[1] == 'html' || $a[1] == 'htm')

{

//unlink($file);

echo "<li>$file</li>n";

}

}

}

echo "</ul>n";

$mydir->close();

}

//開始運行

echo "<h2>目錄為粉紅色</h2><br>n";

tree("./");

?>

相關詞條

熱門詞條

聯絡我們