Tag: display bing picture

Simple PHP Function to Display Daily Bing WallPaper

Bing uploads a daily wallpaper, and we can show today’s Bing wallpaper via the following PHP function. <?php function display_daily_bing_wallpaper() { $bing_daily_image_xml = file_get_contents('http://cn.bing.com/HPImageArchive.aspx?idx=0&n=1'); preg_match("/<urlBase>(.+?)<\/urlBase>/ies", $bing_daily_image_xml, $matches); $bing_daily_img_url= 'https://s.cn.bing.com' …