$files->pluck()
Extracts all values for a single field into a new array
$files->pluck(string $field, string|null $split = null, bool $unique = false): array
Parameters
Name | Type | Default |
---|---|---|
$fieldrequired | string |
no default value |
$split | string ornull |
null
|
$unique | bool |
false
|
Return type
array
Parent class
Kirby\Cms\Files
inherited from Kirby\Toolkit\Collection
Examples
<ul>
<?php foreach($page->files()->pluck('filename') as $filename): ?>
<li><?= html($filename) ?></li>
<?php endforeach ?>
</ul>