jikan-me / jikan

Unofficial MyAnimeList PHP+REST API which provides functions other than the official API
https://jikan.moe
MIT License
875 stars 93 forks source link

Add pagination for Anime Videos (episodes) #445

Closed irfan-dahir closed 2 years ago

irfan-dahir commented 2 years ago

Reference discussions:

https://discord.com/channels/460491088004907029/462991054619148288/991761896678109195 https://discord.com/channels/460491088004907029/462992340718583814/979464170623885332 https://discord.com/channels/460491088004907029/462992340718583814/963059737744785499

irfan-dahir commented 2 years ago

Added.

Usage:

require_once __DIR__.'/vendor/autoload.php';

$jikan = new \Jikan\MyAnimeList\MalClient();

$data = $jikan->getAnimeVideosEpisodes(
    new \Jikan\Request\Anime\AnimeVideosEpisodesRequest(21, 2)
);

var_dump(
    $data->getResults(),
    $data->getLastVisiblePage(),
    $data->hasNextPage()
);