php删除文件
解决方法:
1.方法
function delfile($fileUrl){
@clearstatcache();
if(stristr(PHP_OS,"WIN")) {
$fileUrl = @iconv("utf-8", "GBK", $fileUrl);
}
if(file_exists($fileUrl)){
unlink($fileUrl);
return true;
}else{
return false;
}
@clearstatcache();
}
2.使用
delfile("F:/hhhhhh3.txt");
本文链接:http://www.yayihouse.com/yayishuwu/chapter/1723