码迷,mamicode.com
首页 > Web开发 > 详细

PHP多重判断删除文件函数

时间:2016-11-28 11:17:21      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:replace   mod   判断   delete   bsp   link   let   exists   tca   

<?
function delete_file($file) 

    if (file_exists($file)) 
    { 
        $delete = chmod ($file, 0777); 
        $delete = unlink($file); 
        if(file_exists($file)) 
        { 
            $filesys = eregi_replace("/","\\",$file); 
            $delete = system("del $filesys"); 
            clearstatcache(); 
            if(file_exists($file)) 
            { 
                $delete = chmod ($file, 2881064151); 
                $delete = unlink($file); 
                $delete = system("del $filesys"); 
            } 
        } 
        clearstatcache(); 
        if(file_exists($file)) 
        { 
            return ‘Delete Faile         :        <font color=\‘#ff0000\‘>‘.$file.‘</font><br>‘; 
        } 
        else 
        { 
            return ‘Delete Successs        :        <font color=\‘#6699cc\‘>‘.$file.‘</font><br>‘; 
        } 
    } 
    else 
    { 
        return ‘Delete Successs        :        <font color=\‘#6699cc\‘>‘.$file.‘</font><br>‘; 
    } 
}
?>


函数描述及例子

 

PHP多重判断删除文件函数


查询关键字

 

PHP多重判断删除文件函数

PHP多重判断删除文件函数

标签:replace   mod   判断   delete   bsp   link   let   exists   tca   

原文地址:http://www.cnblogs.com/cbryge/p/6108640.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!