$files->pluck()
Extracts all values for a single field into a new array
$files->pluck(string $field, string $split = null, bool $unique = false): array
Parameters
Name | Type | Default | Description |
---|---|---|---|
$field |
string |
– | |
$split |
string |
null |
|
$unique |
bool |
false |
Return type
array
Example
<ul>
<?php foreach($page->files()->pluck('filename') as $filename): ?>
<li><?= html($filename) ?></li>
<?php endforeach ?>
</ul>
Inherited from
Kirby\Toolkit\Collection