PHP code example of arifszn / reddit-image-fetcher
1. Go to this page and download the library: Download arifszn/reddit-image-fetcher library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
arifszn / reddit-image-fetcher example snippets
use arifszn\RedditImageFetcher\RedditImageFetcher;
$redditImageFetcher = new RedditImageFetcher();
$result = $redditImageFetcher->fetch('meme'); // fetch 1 meme
$result = $redditImageFetcher->fetch('wallpaper'); // fetch 1 wallpaper
$result = $redditImageFetcher->fetch('wallpaper', 50); // fetch 50 wallpapers
// custom image fetch from given subreddits
$result = $redditImageFetcher->fetch(
'custom',
50,
['cats', 'Catswhoyell', 'sleepingcats']
); // fetch 50 cat images from custom subreddit library
$result = $redditImageFetcher->fetch(
'meme',
50,
[],
['memes', 'funny'],
['dankmemes']
); // fetch 50 memes by adding two subreddits and removing 1 subreddit from default subreddit library