利用坚果云,实现图床功能(原创)
首先基础源码
坚果云上传和解析源码
创建 jianguoyun.php 文件,作为程序入口
内容已隐藏,需要评论并且审核通过后,才能阅读隐藏内容
引入到基础源码
插入1,打开图片中的判断
//获取坚果云记录
require_once('jianguoyun.php');
$data = getFile($key);
if ($data == null) {
header("Location: /");
exit();
}
//重定向请求
$imgUrl = 'https://www.jianguoyun.com' . $data['tblUri'] . '/l?t.jpg';
header("Location: $imgUrl");
exit();
插入2,移动文件到指定目录
//上传到坚果云
require_once('jianguoyun.php');
$result = uploadFile($filePath, $newFileName, false);
$outData = '';
$outData .= '长期:[img]https://xxx.com?name=' . $newFileName . '[/img]<br />';
$outData .= '短期:[img]https://www.jianguoyun.com' . $result['tblUrl'] . '/l?t.jpg[/img]<br />';
$resultOut['data'] = $outData;
版权属于:zgcwkj
本文链接:https://zgcwkj.com/archives/239.html
转载声明:请注明本文章的标题及内容的出处和声明,谢谢