Skip to content

Kirby 3.6.6

$files->flip()

Returns the elements in reverse order

$files->flip(): Kirby\Cms\Files

Return type

Kirby\Cms\Files

This method does not modify the existing $files object but returns a new object with the changes applied. Learn more →

Parent class

Kirby\Cms\Files inherited from Kirby\Toolkit\Collection

Example

<ul>
  <?php foreach($page->files()->flip() as $file): ?>
  <li>
    <a href="<?= $file->url() ?>">
      <?= html($file->filename()) ?>
    </a>
  </li>
  <?php endforeach ?>
</ul>