unlink()

unlink()
將伺服器的某個檔案刪除
使用方法
unlink(伺服器路徑);

del.php
<?php
  $DestDIR = "c:/www";
  $ServerFilename = "test.txt";
  $fh = fopen($DestDIR . "/" . $ServerFilename, 'a'); //注一
  fwrite($fh, 'Hello world!'); //注一
  unlink($DestDIR . "/" . $ServerFilename);
?>

*注一 : 為C語言的語法,在PHP裡可以用。

0 意見:

張貼留言