unsplash api php code example
Example 1: unsplash php api
$search = 'forest';
$page = 3;
$per_page = 15;
$orientation = 'landscape';
Unsplash\Search::photos($search, $page, $per_page, $orientation);
Example 2: unsplash php api
$collection = Unsplash\Collection::find(int $id);
$collection->remove(int $photo_id)