$file->next()
Returns the next item in the collection if available
$file->next(\Kirby\Cms\Collection|null $collection = null): Kirby\Cms\File|null
Parameters
| Name | Type | Default |
|---|---|---|
| $collection | Kirby\Cms\Collection|null |
null |
Return type
Kirby\Cms\File|null
This method does not modify the existing $file object but returns a new object with the changes applied. Learn more →
Parent class
Example
if(($file = $page->file('my-file.pdf')) && $next = $file->next()):
echo 'Next file: ' . $next->filename();
endif;