且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何获取PHP中上传文件的内容?

更新时间:2023-02-23 21:35:57

$fileContent = file_get_contents($_FILES['upload_file']['tmp_name']);

有关概述,请参见手册: $_FILES 本教程: Tizag PHP-文件上传进行演练.

Refer to the manual: $_FILES for an overview and this tutorial: Tizag PHP - File Upload for a walkthrough.

此PHP手册部分也是必读内容:处理文件上传-从hakre的评论中移出.

This PHP Manual section is a must-read as well: Handling File Uploads - moved from hakre's comment.