Skip to content

Instantly share code, notes, and snippets.

View lpoujol's full-sized avatar

Ludovic Poujol lpoujol

  • Marseille, France
View GitHub Profile
@kaleidoscopique
kaleidoscopique / getBingPictureOfTheDay.php
Last active August 29, 2015 14:13
Fetch the URL of the Picture Of The Day from Bing
<?php
/**
* Fetch the URL of the Picture Of The Day from Bing
* @return (mixed) FALSE or the URL of the picture
*/
function getBingPictureOfTheDay()
{
$bingRawJson = file_get_contents('http://www.bing.com/HPImageArchive.aspx?format=js&idx=0&n=1');
if ($bingRawJson === FALSE) {