Home >Backend Development >PHP Tutorial >请问app上传图片,php怎么接收处理 (用的TP)

请问app上传图片,php怎么接收处理 (用的TP)

WBOY
WBOYOriginal
2016-06-13 12:21:591562browse

请教app上传图片,php如何接收处理 (用的TP)

网上查了好多资料,
有的用base64
有的用 $_FILES;
             ($_POST;
             file_get_contents('php://input')

有没有可以模拟出来一个客户端上传, 然后 PHP后端处理完成的例子?
不是很明白原理,谢谢
------解决思路----------------------
我们的app上传图片使用http上传的,我测试时,用的form表单,设置form属性为enctype="multipart/form-data"
后台获取用$_FILES就可以获取了
------解决思路----------------------
那就得问开发app的人怎么上传图片的,一般都是http 表单上传,也就是说,你用form表单的就能模拟app上传了
当然,你也可以,打印出$_FILES里面的数据,若有,就表示获取到了app上传的图片,没有就失败了呗
------解决思路----------------------
app上传,php这边接收不用改的,与网页上传一样。
app那边使用 content-disposition: form-data; 这种方式上传就可以了。
参考:http://blog.csdn.net/fdipzone/article/details/12180523
------解决思路----------------------
根据APP的上传方式来决定PHP端的获取方式,多数都是表单式上传。
$_FILES; file_get_contents('php://input')都可以。。

还有的是先在客户端读取了文件内容,再base64编码,再上传。
比较简单的大文件断点上传,其实就可以这种【主要靠APP处理】。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn