Home  >  Article  >  Backend Development  >  What is the function to delete files in php

What is the function to delete files in php

藏色散人
藏色散人Original
2020-07-03 11:21:573682browse

php's function to delete files is "unlink()". The syntax of this function is "unlink(filename,context)", where the parameter "filename" represents the file to be deleted, and the parameter "context" represents the file handle. environment of.

What is the function to delete files in php

unlink()

Definition and usage

unlink() function deletion document.

If successful, return true, otherwise return false.

Syntax

unlink(filename,context)

Parameters

filename required. Specifies the files to be deleted.

context Optional. Specifies the environment for a file handle. Context is a set of options that modify the behavior of the stream.

Tips and Notes

Note: Support for context was added in PHP 5.0.0.

Example

<?php
$file = "test.txt";
if (!unlink($file))
  {
  echo ("Error deleting $file");
  }
else
  {
  echo ("Deleted $file");
  }
?>

Recommended: "PHP Tutorial"

The above is the detailed content of What is the function to delete files in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn