Skip to content

Instantly share code, notes, and snippets.

@ENDsoft233
Created February 7, 2021 12:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ENDsoft233/09294a9f5238eb54a9e1f11686c02690 to your computer and use it in GitHub Desktop.
Save ENDsoft233/09294a9f5238eb54a9e1f11686c02690 to your computer and use it in GitHub Desktop.
return the latest bing pic
<?php
function getBingPic(){
$res = json_decode(file_get_contents("https://bing.com/HPImageArchive.aspx?format=js&idx=0&n=1"),true);
return $res["images"][0]["url"];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment