如何对$ _POST $ _FILES文件进行基础64编码

时间:2019-01-25 23:51:53

标签: php file file-upload

我想知道如何对以A POST格式从一页发送到另一页的文件进行base64编码。

因为,这不起作用base64_encode($_FILES['file'])  甚至base64_encode(file_get_contents($_FILES['file']))。  甚至是base64_encode(file_get_contents($_FILES['file']['name']))

为什么不起作用。正确的做法是什么。

1 个答案:

答案 0 :(得分:3)

tmp_name是临时存储文件的文件路径

base64_encode(file_get_contents($_FILES['file']['tmp_name']))