必应获取每日高清壁纸API代码

必应获取每日高清壁纸API代码

Anderyly
2019-01-27 / 0 评论 / 2 阅读 / 正在检测是否收录...
温馨提示:
本文最后更新于2024年02月27日,已超过268天没有更新,若内容或图片失效,请留言反馈。

话不多说直接上代码

    <?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");
0

评论 (0)

取消