PHP判断文件是否存在不存在创建文件

寻技术 PHP编程 / R语言 2023年07月08日 194
$path_name="out_zip/web_abc.zip"; 

if (file_exists($path_name)){//判断文件如果存在
    unlink($path_name);//删除文件
    fopen($path_name, "w");//创建文件(用于清空)
}else{
    fopen($path_name, "w");//创建文件
}


关闭

用微信“扫一扫”