file_get_content服务器对服务器二进制文件上传
Posted hnhycnlc888
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了file_get_content服务器对服务器二进制文件上传相关的知识,希望对你有一定的参考价值。
1、file_get_contents函数可安全用于二进制对象,适用服务器对服务器文件是上传场景
base64_encode(file_get_contents(‘1268879774AaCl4wIE.jpg‘, true))
需要做base64编码,必要情况下还需要用文件特定函数如图片,resize函数验证文件内容是否包含html/php等代码。
2、form表单multipart/form-data适用客户端对服务器文件上传
以上是关于file_get_content服务器对服务器二进制文件上传的主要内容,如果未能解决你的问题,请参考以下文章
file_get_contents('php://input') 为一个用户返回空,但对其他人工作正常