使用php将文件上传到imgur并检索链接
作者:互联网
我有一个带有文件上传按钮的HTML表单.我希望用户能够选择图像并提交表单,然后服务器应该使用PHP将文件上传到imgur并检索该图像的直接链接(意味着URL应以.jpg或.png等结尾) .)
如果有人能告诉我如何使用PHP将图像上传到imgur然后检索到该图像的直接链接以便我可以将链接存储到MySQL数据库,我将非常感激.如果无法检索直接图像链接,那么正常的imgur链接也可以.这样的含义也会起作用:
https://imgur.com/gallery/KlzhGuE
但是,首要任务是这样的:
https://i.imgur.com/KlzhGuE.jpg
编辑:所以,我设法上传图像并使用api获得json回复.
在我解码返回的json和var_dump之后,我得到了这个:
object(stdClass)#1 (3) {
["data"]=>
object(stdClass)#2 (21) {
["id"]=>
string(7) "yPfV2Tq"
["title"]=>
NULL
["description"]=>
NULL
["datetime"]=>
int(1456813618)
["type"]=>
string(9) "image/png"
["animated"]=>
bool(false)
["width"]=>
int(123)
["height"]=>
int(23)
["size"]=>
int(3149)
["views"]=>
int(0)
["bandwidth"]=>
int(0)
["vote"]=>
NULL
["favorite"]=>
bool(false)
["nsfw"]=>
NULL
["section"]=>
NULL
["account_url"]=>
NULL
["account_id"]=>
int(0)
["comment_preview"]=>
NULL
["deletehash"]=>
string(15) "bNjtF9OSdG1QAM7"
["name"]=>
string(0) ""
["link"]=>
string(30) "http://i.imgur.com/yPfV2Tq.png"
}
["success"]=>
bool(true)
["status"]=>
int(200)
}
现在它如何提取说http://i.imgur.com/yPfV2Tq.png的部分?
解决方法:
好的,我已经找到了如何做到的方式,
从这里使用的帮助:
using imgur api v3 to upload images anonymously using php
在他的回答中使用了h0tw1r3提供的代码.并使用drew010中的帮助来提取链接
$reply->data->link;
除了h0tw1r3提供的代码.
无论如何,多亏了xjstratedgebx的尝试.
标签:php,mysql,html,imgur 来源: https://codeday.me/bug/20190706/1396416.html