首页
友人帐
留言板
关于
Search
1
IDE Eval Resetter:JetBrains 全家桶无限试用插件
377 阅读
2
影视资源采集站收录大全
302 阅读
3
linux安装或升级protoc
223 阅读
4
VFM 3.7.5 源码 - 一个极简的 PHP 私人云盘!
161 阅读
5
批量采集美女写真等图片做图片站
149 阅读
谈天说地
程序源码
技术教程
成品源码
登录
Search
标签搜索
PHP
linux
源码
go
windows
centos
原创
mysql
微信
激活
采集
宝塔
绿色版
API
解析
SDK
图片
破解
域名
html
云青
累计撰写
150
篇文章
累计收到
75
条评论
首页
栏目
谈天说地
程序源码
技术教程
成品源码
页面
友人帐
留言板
关于
搜索到
4
篇与
的结果
2019-01-27
必应获取每日高清壁纸API代码
话不多说直接上代码 <?php $str = file_get_contents('http://cn.bing.com/HPImageArchive.aspx?idx=0&n=1'); if (preg_match("/<url>(.+?)<\/url>/ies", $str, $matches)) { $imgurl = 'http://cn.bing.com' . $matches[1]; } else { $imgurl = '修改为你自己的默认图片地址'; } header("Location: $imgurl");
2019年01月27日
2 阅读
0 评论
0 点赞
2018-12-14
PHP获取toopen性感美女随机图片,PHP接口
接口地址:https://api.aaayun.cc/?type=Image&file=TooPenRand实现很简单,如需要源码,请留言
2018年12月14日
46 阅读
0 评论
0 点赞
2018-12-13
PHP360随机壁纸图片接口,PHP随机图片API
接口地址:https://api.aaayun.cc/?type=Image&file=QiHooRand&cid=26参数cid可变:游戏人物:5 美女模特:6 影视:7 风景:9 时尚:10明星:11 汽车:12 萌宠:14 小清新:15 体育:16儿童:18 壁纸:29 爱情:30 文字:35 4k图片:36军事:22其它参数自己试试吧
2018年12月13日
13 阅读
0 评论
0 点赞
2018-12-11
PHP百度随机壁纸图片接口,PHP随机图片API
接口地址:https://api.aaayun.cc/?type=Image&file=BaiDuRand&class=美女&sub=写真参数sub可不填写 function image($class, $sub = '', $rand = 1000) { $i = rand(0, $rand); $url = "http://image.baidu.com/data/imgs?pn=0&rn=18&col=%E5%A3%81%E7%BA%B8&tag={$class}&tag3={$sub}&width=0&height=0&ic={$i}&ie=utf8&oe=utf-8&image_id=&fr=channel&p=channel&from=1&app=img.browse.channel.wallpaper&t=0.08688646721576121"; $content = file_get_contents($url); $Json = json_decode($content, 1); $Num = count($Json['imgs']); $Arrnum = rand(0,$Num-2); return $Json['imgs'][$Arrnum]['imageUrl']; } $img = image('动漫美女'); $suff = ltrim(strrchr($img, '.'), '.'); header("content-type:image/{$suff}"); echo file_get_contents($img);
2018年12月11日
26 阅读
0 评论
0 点赞