PHP unlink() 函数用法及示例

PHP Filesystem 参考手册

unlink()函数可以删除文件,成功时返回true,失败时返回false。

语法

bool unlink ( string $filename [, resource $context ] )

该函数可以删除文件名,与Unix C unlink()函数类似。

示例1

<?php
   $file = "/PhpProject/php/sample.txt";
   if(!unlink($file)) {
      echo ("删除 $file 时出错");
   } else {
      echo ("删除 $file 成功");
   }
?>

输出结果

删除 /PhpProject/php/sample.txt 成功

示例2

<?php
   $fh = fopen("/PhpProject/test.html", "a");
   fwrite($fh, "<h1> Hello world! </h1>");
   fclose($fh);

   unlink("/PhpProject1/test.html");
?>

输出结果

file deleted succcessfully

PHP Filesystem 参考手册