Home > Backend Development > PHP Tutorial > 如何用unlink删除多条文件

如何用unlink删除多条文件

WBOY
Release: 2016-06-13 12:20:43
Original
1813 people have browsed it

怎么用unlink删除多条文件

unlink($img);
Copy after login


这样可以删除一个图片文件。
那么试问下,怎么用一次这个函数 删除多个图片文件?


unlink($img;$img1;img2;img3);
Copy after login


这样不行啊。。

------解决思路----------------------
呃!不要异想天开,php不能把所有方法都提供给你,循环删除吧!
或者写个自定义函数,如下
function batchUnlink($str)
{
    $array=explode(';',$str);
    foreach($array as $val)
    {
        unlink($img);
    }
}

batchUnlink($img;$img1;img2;img3);

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