What is the function to delete files in php

藏色散人
Release: 2023-03-01 21:30:01
Original
3643 people have browsed it

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)
Copy after login

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

Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!