Created
September 10, 2017 20:51
-
-
Save spetrey/8b4e930806ff0ba83403ddf75e90b37a to your computer and use it in GitHub Desktop.
Embed your Unsplash photos with this easy-bake PHP snippet.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// The Unsplash API URL that we want to GET. | |
// Get YOUR_APPLICATION_ID here: | |
// https://unsplash.com/developers | |
$url = 'https://api.unsplash.com/users/smpetrey/photos/?client_id=YOUR_APPLICATION_ID'; | |
// Use file_get_contents to GET the URL in question. | |
// the True parameter makes this array as associative. | |
$contents = json_decode(file_get_contents($url), TRUE); | |
// If $contents is not a boolean FALSE value. | |
if($contents !== false) { | |
// Print out the contents. | |
foreach($contents as $item) { | |
echo $item['urls']['regular']; | |
echo $item['links']['html']; | |
// echo the array of the item, useful for debugging and traversing an array. | |
echo '<pre>'; var_dump($item); | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment