php 操作文件简单例子

$name = "test_".time().'.txt';//文件名
$path = $_SERVER["DOCUMENT_ROOT"] . "/test/";//绝对路径
//判断目录是否存在 不存在就创建
if (!is_dir($path)){
    mkdir($path, 0777, true);
}
$file_path  = $path.$name;

//创建文件
$file = @fopen($file_path, "a");
fwrite($file, 'hello world!');
unset($file);//保证后续unlink成功

//todo 业务逻辑

//删除临时文件
if(file_exists($file_path)) {
    @unlink($file_path);
}

 

posted @ 2021-12-01 16:20  一剑还  阅读(29)  评论(0编辑  收藏  举报