Heim >Backend-Entwicklung >PHP-Tutorial >PHP删除文件夹内及其文件

PHP删除文件夹内及其文件

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-20 13:03:341154Durchsuche

<p>function Delete($path){</p><p>    if (is_dir($path) === true)</p><p>    {</p><p>        $files = array_diff(scandir($path), array('.', '..'));</p><p>        foreach ($files as $file)</p><p>        {</p><p>            Delete(realpath($path) . '/' . $file);</p><p>        }</p><p>        return rmdir($path);</p><p>    }</p><p>    else if (is_file($path) === true)</p><p>    {</p><p>        return unlink($path);</p><p>    }</p><p>    return false;</p><p>}</p>

语法:

<p><?php</p><p>$path = "images/";</p><p>Delete($path); // This will delete images folder along with its contents.</p><p>?></p>


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn