昨天发的360 今天有来了,这个接口是必应的每日高清壁纸,而且是支持https的哦,下面贴代码
/**
* 必应随机壁纸
* @author Reaper <a@0oo.ren>
* @request https://www.52bz.la
* @return string
*/
public function bing_bizhi()
{
$num = rand(0,1) ? 8 : 0 ;
$link = file_get_contents('http://www.bing.com/HPImageArchive.aspx?format=js&idx='.$num.'&n=8&pid=hp&_='.md5(rand(1111,9999).'https://www.52bz.la'.time()));
$json = json_decode($link,1);
return 'https://www.bing.com/'.$json["images"][rand(0,count($json['images'])-1)]['url'];
}
2 条评论
这个我用搜狗api的方法,还不行,新建php,然后,运行,出现看不懂的代码,这个应该怎么调用,我是小白才入坑没多久
搜狗的把https那个改成http就行了