Skip to content

Kirby 5.0.0

$files->has()

Checks if the given object or id is in the collection

$files->has(string|Kirby\Cms\File $key): bool

Parameters

Name Type Default
$keyrequired stringorKirby\Cms\File no default value

Return type

bool

Parent class

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

<?php if ($page->files()->has('myimage.jpg')): ?>
There exists a file with the filename `myimage.jpg`
<?php endif ?>