|
復制代碼 代碼如下:
<?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];
}
if($imgurl){
header('Content-Type: image/JPEG');
@ob_end_clean();
@readfile($imgurl);
@flush(); @ob_flush();
exit();
}else{
exit('error');
}
?>
php技術:php獲取bing每日壁紙示例分享,轉載需保留來源!
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。