菜鸡源码,专注精品下载!
当前位置:首页 > 建站教程 > 建站知识

京东图床API接口源码

发布时间:2024-01-05  栏目:建站知识   浏览:   分类:php教程 PHP图床源码 API接口 API源码 php上传

京东图床上传API接口源码是一个用于将图片上传到京东图床的工具。它通过调用京东图床的API接口,实现图片的快速上传和分享。用户只需将图片拖拽到网页上,即可自动获取图片链接并生成Markdown格式的代码。此外,该工具还支持批量上传、自定义域名等功能,方便用户管理和使用图片。总之,京东图床上传API接口源码是一个实用的工具,可以帮助用户轻松地将图片上传到京东图床,提高图片管理的效率。

API接口源码

<?phpif(class_exists('CURLFile')){//php5.5$post['file']=newCURLFile(realpath($_FILES['Filedata']['tmp_name']));}else{$post['file']='@'.realpath($_FILES['Filedata']['tmp_name']);}$rel=get_curl('https://search.jd.com/image?op=upload',$post);preg_match('/callback(?:(")(.*)(?:"))/i',$rel,$matches);if(!$matches[1]){exit('图片上传失败!');}$arr=array('code'=>200,'imgurl'=>'https://img'.rand(10,14).'.360buyimg.com/uba/'.$matches[1]);exit(json_encode($arr));functionget_curl($url,$post=0,$referer=0,$cookie=0,$header=0,$ua=0,$nobaody=0){$ch=curl_init();curl_setopt($ch,CURLOPT_URL,$url);curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,false);curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,false);$httpheader[]="Accept:application/json";$httpheader[]="Accept-Encoding:gzip,deflate,sdch";$httpheader[]="Accept-Language:zh-CN,zh;q=0.8";$httpheader[]="Connection:close";curl_setopt($ch,CURLOPT_HTTPHEADER,$httpheader);if($post){curl_setopt($ch,CURLOPT_POST,1);curl_setopt($ch,CURLOPT_POSTFIELDS,$post);}if($header){curl_setopt($ch,CURLOPT_HEADER,true);}if($cookie){curl_setopt($ch,CURLOPT_COOKIE,$cookie);}if($referer){if($referer==1){curl_setopt($ch,CURLOPT_REFERER,'https://m.qzone.com/infocenter?g_f=');}else{curl_setopt($ch,CURLOPT_REFERER,$referer);}}if($ua){curl_setopt($ch,CURLOPT_USERAGENT,$ua);}else{curl_setopt($ch,CURLOPT_USERAGENT,"Mozilla/5.0(Linux;U;Android4.0.4;es-mx;HTC_One_XBuild/IMM76D)AppleWebKit/534.30(KHTML,likeGecko)Version/4.0");}if($nobaody){curl_setopt($ch,CURLOPT_NOBODY,1);}curl_setopt($ch,CURLOPT_TIMEOUT,3);curl_setopt($ch,CURLOPT_ENCODING,"gzip");curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);$ret=curl_exec($ch);curl_close($ch);return$ret;}


相关专题

相关文章

    无相关信息
评论
建站知识
建站知识
使用技巧
调试安装
运营推广