取消链接图像

时间:2014-06-21 15:08:55

标签: php mysql

这是我的代码,我想使用unlink从文件夹“images / slider_images”中删除图像,但我不知道如何使用它。这是我的代码:

$directory = 'images/slider_images/';     
try {        
    // Styling for images    
    echo '<div id="myslides">';    
    foreach ( new DirectoryIterator($directory) as $item ) {            
        if ($item->isFile()) {
            $path = $directory . '/' . $item;    
            echo '<img src="' . $path . '"/>';    
        }
    }    
    echo '</div>';
}    
catch(Exception $e) {
    echo 'No images found for this slideshow.<br />';    
}

1 个答案:

答案 0 :(得分:0)

这与执行unlink($path);

一样简单

将它放在循环中,检索图像。

   foreach ( new DirectoryIterator($directory) as $item ) {            
        if ($item->isFile()) {
            $path = $directory . '/' . $item;    
           unlink($path); //deletes the images   
        }
    }