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

如何用unlink删除多条文件

WBOY
WBOYOriginal
2016-06-13 12:20:431814browse

怎么用unlink删除多条文件

unlink($img);


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


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


这样不行啊。。

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

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

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