How to delete a file in php

藏色散人
Release: 2023-03-08 18:22:02
Original
2242 people have browsed it

How to delete a file in php: first create a PHP sample file; then declare a file path that needs to be deleted; finally, delete the specified file directly through the unlink function in PHP.

How to delete a file in php

The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer

There is a system function to delete files in php:

unlink ( string $filename );

The parameter $filename represents the path of the file, which can be a relative path or an absolute path.

For example, there is a file in the current directory: test.html

You can execute unlink ('test.html'); to delete it

In addition, use the function to delete the directory: rmdir(); usage is the same as unlink ().

Recommended learning: "PHP Video Tutorial"

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

Related labels:
php
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
Popular Tutorials
More>
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!