当前位置:网站首页>php write online remote file to temp file
php write online remote file to temp file
2022-08-09 04:49:00 【flysnownetwork】
php writes online remote files to temporary files
Foreword
In the project, the data needs to be imported from the Excel table uploaded to Qiniu. First, the file must be temporarily saved in a remote location, and then follow-up operations will be carried out
Thetempnam() function creates a temporary file with a unique file name, if successful, the function returns the new temporary file name, if it fails, it returns false.
sys_get_temp_dir() get the current temporary file directory
fopen($filename, "wb") wb binary write
Code
$filename = tempnam(sys_get_temp_dir(), "xlsx");$handle = fopen($filename, "wb");fwrite($handle, file_get_contents('https://cdn.kj.com/aaa.xlsx'));
边栏推荐
- 阿里云天池大赛赛题(机器学习)——阿里云安全恶意程序检测(完整代码)
- 通讯录(文件版)(C语言)(VS)
- B. Arrays Sum
- AttributeError: partially initialized module ‘cv2‘ has no attribute ‘gapi_wip_gst_GStreamerPipeline‘
- 【Harmony OS】【ARK UI】自定义弹窗
- Introduction to JVM garbage collection mechanism
- Ali YunTianChi competition problem (machine learning) - O2O coupons prediction (complete code)
- Faced with risk control, what should Amazon do when evaluating self-supporting accounts?
- 【luogu U142356】勇者的后缀(SA)(主席树)(二分)
- 【Harmony OS】【ARK UI】轻量级数据存储
猜你喜欢
杰理之采用mix out eq 没有作用【篇】
MySQL:redo log日志——笔记自用
在快手工作是一种什么体验
软件测试的方法详细介绍
JVM垃圾回收机制简介
Harmony OS ets ArkUI 】 【 】 development create a view and building layout
Dingding conflicts with RStudio shortcuts--Dingding shortcut settings
GraalVM安装
2022 High Voltage Electrician Exam Questions and Answers
【HMS core】【ML kit】机器学习服务常见问题FAQ
随机推荐
杰理之电话打入,远端听不到声音【篇】
杰理之智能充电仓低电发码关机 触摸不开机【篇】
安装pytorch和cuda
Masked AutoEncoder论文及实现
Understanding ML Cross Validation Fast
使用ceph-deploycep集群部署,并用3个磁盘作为专用osd
杰理之手机OTG问题【篇】
【学习笔记】AGC044
Correct use of BaseDexClassLoader
GraalVM安装
2022年8月深圳产品经理认证招生简章(NPDP)
Construction and practice of full stack code test coverage and use case discovery system
整除性质1
Introduction to JVM garbage collection mechanism
npm package.json
杰理之播歌曲前后音量大小不一样【篇】
2022 High-altitude installation, maintenance, and demolition exam practice questions and mock exams
equals和==
2022-08-07 反思
通讯录(动态版)(C语言)(VS)