devnullius/php-tmp-file 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

devnullius/php-tmp-file

Composer 安装命令:

composer require devnullius/php-tmp-file

包简介

A convenience class for temporary files

关键字:

README 文档

README

Latest Stable Version License Daily Downloads

A convenience class for temporary files.

Features

  • Create temporary file with arbitrary content
  • Delete file after use (can be disabled)
  • Send file to client, either inline or with save dialog
  • Save file locally
  • Inject callback with custom file sender

Examples

<?php
use devnullius\tmp\File;

$file = new File('some content', '.html');

// send to client for download
$file->send('home.html');

// save to disk
$file->saveAs('/dir/test.html');

// Access file name and directory
echo $file->getFileName();
echo $file->getTempDir();

If you want to keep the temporary file, e.g. for debugging, you can set the $delete property to false:

<?php
use devnullius\tmp\File;

$file = new File('some content', '.html');
$file->delete = false;

If you want to use other way to send files you can give callback as in example (Here is Yii2 response sendFile)

<?php
use devnullius\tmp\File;

$file = new File('some content', '.html');

$file->setResponseMethod(static function ($_filename, $filename) {
    \Yii::$app->response->sendFile($_filename, $filename);
});
$fileName = 'greatFileName.txt';
// and if there is set any response method it's going to be executed
$file->send($fileName);

统计信息

  • 总下载量: 19
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 3
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-09-14

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固