Use the glob function in PHP to delete all files in a directory in one sentence

高洛峰
Release: 2023-03-03 20:44:02
Original
1159 people have browsed it

Collected from the Internet:

array_map('unlink',glob('*'));
Copy after login

It’s just a suggestion. Many friends may not know that there is a glob function. See the manual for more usage.


PHP glob() function

Definition and usage

glob() function returns the file name or directory that matches the specified pattern.
This function returns an array containing matching files/directories. Returns false if an error occurs.

Syntax

glob(pattern,flags)
Copy after login

Use the glob function in PHP to delete all files in a directory in one sentence

Usage examples

Example 1

<?php
print_r(glob("*.txt"));
?>
Copy after login

Output similar to:

Array
(
[0] => target.txt
[1] => source.txt
[2] => test.txt
[3] => test2.txt
)
Copy after login

Example 2

<?php
print_r(glob("*.*"));
?>
Copy after login

Output similar to:

Array
(
[0] => contacts.csv
[1] => default.php
[2] => target.txt
[3] => source.txt
[4] => tem1.tmp
[5] => test.htm
[6] => test.ini
[7] => test.php
[8] => test.txt
[9] => test2.txt
)
Copy after login

Ps: This is a magical function.

For more related articles using the glob function in PHP to delete all files in a directory in one sentence, please pay attention to 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
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!