$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); }