鉴于昨天泽泽网站被打,导致他的api随机图地址无法访问。
然后就想着把他的图片地址弄点过来自己用吧。
没用数据库,就直接用的json作为数据源,反正也不多。
用的302跳转。
例如:https://diyibailingyici.chuangdangjianghudewumingyouxia.cn/api/img
例如:http://doc.suwenhua.wang/getimg/shareImgApi.php
$imgJson='["https:\/\/p9.qhimg.com\/bdr\/__85\/t01e80af34b0fcd1cdc.jpg","https:\/\/p8.qhimg.com\/bdr\/__85\/t019ed01d10ced4439d.jpg"]';
$imgArr=json_decode($imgJson,true);
unset($imgJson);
$num=count($imgArr);//可以写数组的固定值。
$url=$imgArr[mt_rand(0,$num-1)];
unset($imgArr);
header('HTTP/1.1 302 Moved Permanently');
header('Location: '.$url);