php删除文件

上一章章节目录下一章 2018-11-25已有1602人阅读 评论(0)

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
向大家推荐《Activiti工作流实战教程》:https://xiaozhuanlan.com/activiti
0

有建议,请留言!

  • *您的姓名:

  • *所在城市:

  • *您的联系电话:

    *您的QQ:

  • 咨询问题:

  • 提 交