Home  >  Article  >  Backend Development  >  七牛云存储 - 请问php能够实现上传请求的转发功能吗

七牛云存储 - 请问php能够实现上传请求的转发功能吗

WBOY
WBOYOriginal
2016-06-06 20:08:381119browse

今天在看七牛的PHP SDK中发现
七牛云存储 - 请问php能够实现上传请求的转发功能吗

我想问问php能实现这个功能吗,怎么实现,用curl吗

回复内容:

今天在看七牛的PHP SDK中发现
七牛云存储 - 请问php能够实现上传请求的转发功能吗

我想问问php能实现这个功能吗,怎么实现,用curl吗

可以使用curl,可以使用表单,客户端直传的话php向客户端提供token即可

好像不是你理解的那样吧。
php获取token,然后网页上使用这个token直接把文件上传地址指向七牛而已...

<code><form action="http://api.qiniu.com...">
    <input type="hidden" name="token" value="<?php echo $token?>">
    <input type="file" name="file">
    <input type="submit">
</form></code>

这个功能哪种语言都能实现,和curl没关系。

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